From 9495249e70e15a5438ab96587e9871aed588ee41 Mon Sep 17 00:00:00 2001 From: gerlofvanek Date: Mon, 10 Oct 2022 23:44:14 +0200 Subject: [PATCH] GUI v.01 - --- basicswap/basicswap.py | 25 +- basicswap/http_server.py | 48 +- basicswap/interface/btc.py | 13 - basicswap/js_server.py | 17 + basicswap/protocols/atomic_swap_1.py | 1 - basicswap/static/css/.DS_Store | Bin 0 -> 6148 bytes basicswap/static/css/libs/tailwind.min.css | 416019 +++++++++++++++ basicswap/static/css/style.css | 35 + basicswap/static/images/Bid_Accepted.png | Bin 0 -> 5901 bytes basicswap/static/images/New_Offer.png | Bin 0 -> 6589 bytes basicswap/static/images/coins/Bitcoin.png | Bin 0 -> 8075 bytes basicswap/static/images/coins/Litecoin.png | Bin 0 -> 8089 bytes basicswap/static/images/coins/Monero.png | Bin 0 -> 7625 bytes .../static/images/coins/Particl%20Anon.png | Bin 0 -> 7887 bytes .../static/images/coins/Particl%20Blind.png | Bin 0 -> 7887 bytes basicswap/static/images/coins/Particl.png | Bin 0 -> 7887 bytes basicswap/static/images/coins/Pivx.png | Bin 0 -> 5658 bytes .../static/images/elements/circle-violet.svg | 25 + .../static/images/elements/dots-blue.svg | 84 + basicswap/static/images/elements/dots-red.svg | 44 + basicswap/static/images/elements/wave.svg | 7 + basicswap/static/images/gfx/dashboard.png | Bin 0 -> 90664 bytes basicswap/static/images/gfx/macbook.png | Bin 0 -> 4876 bytes .../images/logos/basicswap-logo-dark.svg | 46 + .../static/images/logos/basicswap-logo.svg | 47 + basicswap/static/js/libs/flowbite.js | 3994 + basicswap/static/js/libs/tv.js | 1 + basicswap/static/js/main.js | 40 + basicswap/templates/active.html | 105 +- .../templates/automation_strategies.html | 259 +- basicswap/templates/automation_strategy.html | 199 +- .../templates/automation_strategy_new.html | 130 +- basicswap/templates/bid.html | 561 +- basicswap/templates/bid_xmr.html | 794 +- basicswap/templates/bids.html | 310 +- basicswap/templates/debug.html | 156 +- basicswap/templates/error.html | 3 +- basicswap/templates/explorers.html | 241 +- basicswap/templates/footer.html | 57 + basicswap/templates/header.html | 719 +- basicswap/templates/identity.html | 202 +- basicswap/templates/index.html | 66 +- basicswap/templates/info.html | 1 - basicswap/templates/offer.html | 427 +- basicswap/templates/offer_confirm.html | 831 +- basicswap/templates/offer_new_1.html | 724 +- basicswap/templates/offer_new_2.html | 726 +- basicswap/templates/offers.html | 394 +- basicswap/templates/rpc.html | 217 +- basicswap/templates/settings.html | 349 +- basicswap/templates/smsgaddresses.html | 416 +- basicswap/templates/tor.html | 169 +- basicswap/templates/wallet.html | 425 +- basicswap/templates/wallets.html | 222 +- basicswap/templates/watched.html | 134 +- basicswap/ui/page_automation.py | 7 +- basicswap/ui/page_bids.py | 13 +- basicswap/ui/page_offers.py | 8 + basicswap/ui/page_tor.py | 3 +- basicswap/ui/page_wallet.py | 5 +- 60 files changed, 427938 insertions(+), 1381 deletions(-) create mode 100644 basicswap/static/css/.DS_Store create mode 100644 basicswap/static/css/libs/tailwind.min.css create mode 100644 basicswap/static/css/style.css create mode 100644 basicswap/static/images/Bid_Accepted.png create mode 100644 basicswap/static/images/New_Offer.png create mode 100644 basicswap/static/images/coins/Bitcoin.png create mode 100644 basicswap/static/images/coins/Litecoin.png create mode 100644 basicswap/static/images/coins/Monero.png create mode 100644 basicswap/static/images/coins/Particl%20Anon.png create mode 100644 basicswap/static/images/coins/Particl%20Blind.png create mode 100644 basicswap/static/images/coins/Particl.png create mode 100644 basicswap/static/images/coins/Pivx.png create mode 100644 basicswap/static/images/elements/circle-violet.svg create mode 100644 basicswap/static/images/elements/dots-blue.svg create mode 100644 basicswap/static/images/elements/dots-red.svg create mode 100644 basicswap/static/images/elements/wave.svg create mode 100644 basicswap/static/images/gfx/dashboard.png create mode 100644 basicswap/static/images/gfx/macbook.png create mode 100644 basicswap/static/images/logos/basicswap-logo-dark.svg create mode 100644 basicswap/static/images/logos/basicswap-logo.svg create mode 100644 basicswap/static/js/libs/flowbite.js create mode 100644 basicswap/static/js/libs/tv.js create mode 100644 basicswap/static/js/main.js create mode 100644 basicswap/templates/footer.html diff --git a/basicswap/basicswap.py b/basicswap/basicswap.py index 3ded3a1..b6fbea9 100644 --- a/basicswap/basicswap.py +++ b/basicswap/basicswap.py @@ -2415,9 +2415,21 @@ class BasicSwap(BaseApp): initiate_tx_block_time = int(self.callcoinrpc(coin_from, 'getblock', [initiate_tx_block_hash, ])['time']) if offer.lock_type == TxLockTypes.ABS_LOCK_BLOCKS: # Walk the coin_to chain back until block time matches - block_header_at = ci_to.getBlockHeaderAt(initiate_tx_block_time, block_after=True) - cblock_hash = block_header_at['hash'] - cblock_height = block_header_at['height'] + blockchaininfo = self.callcoinrpc(coin_to, 'getblockchaininfo') + cblock_hash = blockchaininfo['bestblockhash'] + cblock_height = blockchaininfo['blocks'] + max_tries = 1000 + for i in range(max_tries): + prev_block = self.callcoinrpc(coin_to, 'getblock', [cblock_hash, ]) + self.log.debug('prev_block %s', str(prev_block)) + + if prev_block['time'] <= initiate_tx_block_time: + break + # cblock_hash and height are out of step unless loop breaks + cblock_hash = prev_block['previousblockhash'] + cblock_height = prev_block['height'] + + ensure(prev_block['time'] <= initiate_tx_block_time, 'Block not found for lock height') self.log.debug('Setting lock value from height of block %s %s', coin_to, cblock_hash) contract_lock_value = cblock_height + lock_value @@ -4072,10 +4084,7 @@ class BasicSwap(BaseApp): ensure(script_lock_value == expect_sequence, 'sequence mismatch') else: if offer.lock_type == TxLockTypes.ABS_LOCK_BLOCKS: - block_header_from = ci_from.getBlockHeaderAt(bid.created_at) - chain_height_at_bid_creation = block_header_from['height'] - ensure(script_lock_value <= chain_height_at_bid_creation + offer.lock_value + atomic_swap_1.ABS_LOCK_BLOCKS_LEEWAY, 'script lock height too high') - ensure(script_lock_value >= chain_height_at_bid_creation + offer.lock_value - atomic_swap_1.ABS_LOCK_BLOCKS_LEEWAY, 'script lock height too low') + self.log.warning('TODO: validate absolute lock values') else: ensure(script_lock_value <= bid.created_at + offer.lock_value + atomic_swap_1.INITIATE_TX_TIMEOUT, 'script lock time too high') ensure(script_lock_value >= bid.created_at + offer.lock_value, 'script lock time too low') @@ -5318,7 +5327,7 @@ class BasicSwap(BaseApp): 'version': self.coin_clients[coin]['core_version'], 'name': ci.coin_name(), 'blocks': blockchaininfo['blocks'], - 'synced': '{0:.2f}'.format(round(blockchaininfo['verificationprogress'], 2)), + 'synced': '{:.2f}'.format(round(100*blockchaininfo['verificationprogress'], 2)), } if 'known_block_count' in blockchaininfo: diff --git a/basicswap/http_server.py b/basicswap/http_server.py index 48d85ec..17eb3b8 100644 --- a/basicswap/http_server.py +++ b/basicswap/http_server.py @@ -28,9 +28,11 @@ from .basicswap_util import ( strTxState, strAddressType, ) + from .js_server import ( js_error, js_url_to_function, + js_generatenotification, ) from .ui.util import ( getCoinName, @@ -43,6 +45,7 @@ from .ui.page_automation import ( page_automation_strategy, page_automation_strategy_new, ) + from .ui.page_bids import page_bids, page_bid from .ui.page_offers import page_offers, page_offer, page_newoffer from .ui.page_tor import page_tor, get_tor_established_state @@ -85,7 +88,6 @@ def listExplorerActions(swap_client): ('unspent', 'List Unspent')] return actions - class HttpHandler(BaseHTTPRequestHandler): def checkForm(self, post_string, name, messages): @@ -130,22 +132,29 @@ class HttpHandler(BaseHTTPRequestHandler): **args_dict, ), 'UTF-8') - def page_info(self, info_str): + def page_info(self, info_str, post_string): template = env.get_template('info.html') - return self.render_simple_template(template, { + swap_client = self.server.swap_client + summary = swap_client.getSummary() + return self.render_template(template, { 'title_str': 'BasicSwap Info', 'message_str': info_str, + 'summary': summary, }) - def page_error(self, error_str): + def page_error(self, error_str, post_string): template = env.get_template('error.html') - return self.render_simple_template(template, { + swap_client = self.server.swap_client + summary = swap_client.getSummary() + return self.render_template(template, { 'title_str': 'BasicSwap Error', 'message_str': error_str, + 'summary': summary, }) def page_explorers(self, url_split, post_string): swap_client = self.server.swap_client + summary = swap_client.getSummary() result = None explorer = -1 @@ -182,11 +191,13 @@ class HttpHandler(BaseHTTPRequestHandler): 'explorer': explorer, 'actions': listExplorerActions(swap_client), 'action': action, - 'result': result + 'result': result, + 'summary': summary, }) def page_rpc(self, url_split, post_string): swap_client = self.server.swap_client + summary = swap_client.getSummary() result = None coin_type = -1 @@ -242,10 +253,12 @@ class HttpHandler(BaseHTTPRequestHandler): 'coin_type': coin_id, 'result': result, 'messages': messages, + 'summary': summary, }) def page_debug(self, url_split, post_string): swap_client = self.server.swap_client + summary = swap_client.getSummary() result = None messages = [] @@ -262,20 +275,24 @@ class HttpHandler(BaseHTTPRequestHandler): return self.render_template(template, { 'messages': messages, 'result': result, + 'summary': summary, }) def page_active(self, url_split, post_string): swap_client = self.server.swap_client active_swaps = swap_client.listSwapsInProgress() + summary = swap_client.getSummary() template = env.get_template('active.html') return self.render_template(template, { 'refresh': 30, 'active_swaps': [(s[0].hex(), s[1], strBidState(s[2]), strTxState(s[3]), strTxState(s[4])) for s in active_swaps], + 'summary': summary, }) def page_settings(self, url_split, post_string): swap_client = self.server.swap_client + summary = swap_client.getSummary() messages = [] form_data = self.checkForm(post_string, 'settings', messages) @@ -342,21 +359,25 @@ class HttpHandler(BaseHTTPRequestHandler): return self.render_template(template, { 'messages': messages, 'chains': chains_formatted, + 'summary': summary, }) def page_watched(self, url_split, post_string): swap_client = self.server.swap_client watched_outputs, last_scanned = swap_client.listWatchedOutputs() + summary = swap_client.getSummary() template = env.get_template('watched.html') return self.render_template(template, { 'refresh': 30, 'last_scanned': [(getCoinName(ls[0]), ls[1]) for ls in last_scanned], 'watched_outputs': [(wo[1].hex(), getCoinName(wo[0]), wo[2], wo[3], int(wo[4])) for wo in watched_outputs], + 'summary': summary, }) def page_smsgaddresses(self, url_split, post_string): swap_client = self.server.swap_client + summary = swap_client.getSummary() page_data = {} messages = [] @@ -424,12 +445,14 @@ class HttpHandler(BaseHTTPRequestHandler): 'data': page_data, 'smsgaddresses': smsgaddresses, 'network_addr': network_addr, + 'summary': summary, }) def page_identity(self, url_split, post_string): ensure(len(url_split) > 2, 'Address not specified') identity_address = url_split[2] swap_client = self.server.swap_client + summary = swap_client.getSummary() page_data = {'identity_address': identity_address} messages = [] @@ -464,6 +487,7 @@ class HttpHandler(BaseHTTPRequestHandler): return self.render_template(template, { 'messages': messages, 'data': page_data, + 'summary': summary, }) def page_shutdown(self, url_split, post_string): @@ -538,6 +562,8 @@ class HttpHandler(BaseHTTPRequestHandler): '.svg': 'image/svg+xml', '.png': 'image/png', '.jpg': 'image/jpeg', + '.gif': 'image/gif', + '.ico': 'image/x-icon', }.get(extension, '') if mime_type == '': raise ValueError('Unknown file type ' + filename) @@ -578,6 +604,10 @@ class HttpHandler(BaseHTTPRequestHandler): return page_wallet(self, url_split, post_string) if page == 'settings': return self.page_settings(url_split, post_string) + if page == 'error': + return self.page_error(url_split, post_string) + if page == 'info': + return self.page_info(url_split, post_string) if page == 'rpc': return self.page_rpc(url_split, post_string) if page == 'debug': @@ -594,8 +624,8 @@ class HttpHandler(BaseHTTPRequestHandler): return page_offers(self, url_split, post_string, sent=True) if page == 'bid': return page_bid(self, url_split, post_string) - if page == 'bids': - return page_bids(self, url_split, post_string) + if page == 'receivedbids': + return page_bids(self, url_split, post_string, received=True) if page == 'sentbids': return page_bids(self, url_split, post_string, sent=True) if page == 'availablebids': @@ -656,7 +686,7 @@ class HttpThread(threading.Thread, HTTPServer): self.port_no = port_no self.allow_cors = allow_cors self.swap_client = swap_client - self.title = 'BasicSwap, ' + self.swap_client.chain + self.title = 'BasicSwap - ' + __version__ self.last_form_id = dict() self.session_tokens = dict() self.env = env diff --git a/basicswap/interface/btc.py b/basicswap/interface/btc.py index 85c06df..eea5ae9 100644 --- a/basicswap/interface/btc.py +++ b/basicswap/interface/btc.py @@ -243,19 +243,6 @@ class BTCInterface(CoinInterface): def getBlockHeader(self, block_hash): return self.rpc_callback('getblockheader', [block_hash]) - def getBlockHeaderAt(self, time, block_after=False): - blockchaininfo = self.rpc_callback('getblockchaininfo') - last_block_header = self.rpc_callback('getblockheader', [blockchaininfo['bestblockhash']]) - - max_tries = 5000 - for i in range(max_tries): - prev_block_header = self.rpc_callback('getblock', [last_block_header['previousblockhash']]) - if prev_block_header['time'] <= time: - return last_block_header if block_after else prev_block_header - - last_block_header = prev_block_header - raise ValueError(f'Block header not found at time: {time}') - def initialiseWallet(self, key_bytes): key_wif = self.encodeKey(key_bytes) diff --git a/basicswap/js_server.py b/basicswap/js_server.py index ee0d10a..b1d5f5f 100644 --- a/basicswap/js_server.py +++ b/basicswap/js_server.py @@ -5,6 +5,7 @@ # file LICENSE or http://www.opensource.org/licenses/mit-license.php. import json +import random import urllib.parse from .util import ( @@ -13,6 +14,7 @@ from .util import ( from .basicswap_util import ( strBidState, SwapTypes, + NotificationTypes as NT, ) from .chainparams import ( Coins, @@ -406,5 +408,20 @@ def js_url_to_function(url_split): 'rate': js_rate, 'rates': js_rates, 'rateslist': js_rates_list, + 'generatenotification': js_generatenotification, }.get(url_split[2], js_index) return js_index + +def js_generatenotification(self, url_split, post_string, is_json): + swap_client = self.server.swap_client + r = random.randint(0, 3) + if r == 0: + swap_client.notify(NT.OFFER_RECEIVED, {'offer_id': random.randbytes(28).hex()}) + elif r == 1: + swap_client.notify(NT.BID_RECEIVED, {'type': 'atomic', 'bid_id': random.randbytes(28).hex(), 'offer_id': random.randbytes(28).hex()}) + elif r == 2: + swap_client.notify(NT.BID_ACCEPTED, {'bid_id': random.randbytes(28).hex()}) + elif r == 3: + swap_client.notify(NT.BID_RECEIVED, {'type': 'xmr', 'bid_id': random.randbytes(28).hex(), 'offer_id': random.randbytes(28).hex()}) + + return bytes(json.dumps({'type': r}), 'UTF-8') diff --git a/basicswap/protocols/atomic_swap_1.py b/basicswap/protocols/atomic_swap_1.py index 166a9ba..8d9c0a7 100644 --- a/basicswap/protocols/atomic_swap_1.py +++ b/basicswap/protocols/atomic_swap_1.py @@ -12,7 +12,6 @@ from basicswap.script import ( ) INITIATE_TX_TIMEOUT = 40 * 60 # TODO: make variable per coin -ABS_LOCK_BLOCKS_LEEWAY = 5 def buildContractScript(lock_val, secret_hash, pkh_redeem, pkh_refund, op_lock=OpCodes.OP_CHECKSEQUENCEVERIFY): diff --git a/basicswap/static/css/.DS_Store b/basicswap/static/css/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..290f9ffc989426b0f3633495fac1c9f1d3958695 GIT binary patch literal 6148 zcmeHKyH3ME5S#@UL1|LbAo&X-@dqXf1vNi_94L@1r3e&s?)dC5`v4`jXerRFv^(D0 zowGcJ_YQz<-k)!Q6@UfZ5uYCB=5_a(UDS%B`5q6$e%BBCo_TCIW6T$v+hD*edK@PF zJJ#06upnOHfH!=w`vq(4m`xaVGhqZxK?+C#DIf);fD|}UfHT`|u}oBy0#ZN<{3zi6 zhnDWx6^@DV>tOKXyVn~>H$KPFpV(I36^@Cl&@8FMq*`4utZojLbk@7-9}|-fi#Kzh zdb8CH#p>c=ZM4I>L`5ke1?kx7BSP~ZzXBqo6X literal 0 HcmV?d00001 diff --git a/basicswap/static/css/libs/tailwind.min.css b/basicswap/static/css/libs/tailwind.min.css new file mode 100644 index 0000000..0331749 --- /dev/null +++ b/basicswap/static/css/libs/tailwind.min.css @@ -0,0 +1,416019 @@ +//sdfdsdfds/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ + +/* +Document +======== +*/ + +/** +Use a better box model (opinionated). +*/ + +*, +*::before, +*::after { + box-sizing: border-box; +} + +/** +Use a more readable tab size (opinionated). +*/ + +:root { + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; +} + +/** +1. Correct the line height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +*/ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* +Sections +======== +*/ + +/** +Remove the margin in all browsers. +*/ + +body { + margin: 0; +} + +/** +Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +*/ + +body { + font-family: + system-ui, + -apple-system, /* Firefox supports this but not yet `system-ui` */ + 'Segoe UI', + Roboto, + Helvetica, + Arial, + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji'; +} + +/* +Grouping content +================ +*/ + +/** +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ +} + +/* +Text-level semantics +==================== +*/ + +/** +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/** +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/** +1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +2. Correct the odd 'em' font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: + ui-monospace, + SFMono-Regular, + Consolas, + 'Liberation Mono', + Menlo, + monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/** +Prevent 'sub' and 'sup' elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +Tabular data +============ +*/ + +/** +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ +} + +/* +Forms +===== +*/ + +/** +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** +Remove the inheritance of text transform in Edge and Firefox. +1. Remove the inheritance of text transform in Firefox. +*/ + +button, +select { /* 1 */ + text-transform: none; +} + +/** +Correct the inability to style clickable types in iOS and Safari. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; +} + +/** +Remove the inner border and padding in Firefox. +*/ + +::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** +Restore the focus styles unset by the previous rule. +*/ + +:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** +Remove the additional ':invalid' styles in Firefox. +See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/** +Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. +*/ + +legend { + padding: 0; +} + +/** +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/** +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/** +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to 'inherit' in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* +Interactive +=========== +*/ + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/** + * Manually forked from SUIT CSS Base: https://github.com/suitcss/base + * A thin layer on top of normalize.css that provides a starting point more + * suitable for web applications. + */ + +/** + * Removes the default spacing and border for appropriate elements. + */ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +button { + background-color: transparent; + background-image: none; +} + +/** + * Work around a Firefox/IE bug where the transparent `button` background + * results in a loss of the default `button` focus styles. + */ + +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; +} + +/** + * Tailwind custom reset styles + */ + +/** + * 1. Use the user's configured `sans` font-family (with Tailwind's default + * sans-serif font stack as a fallback) as a sane default. + * 2. Use Tailwind's default "normal" line-height so the user isn't forced + * to override it to ensure consistency even when using the default theme. + */ + +html { + font-family: "Inter", ui-sans-serif, 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"; /* 1 */ + line-height: 1.5; /* 2 */ +} + +/** + * Inherit font-family and line-height from `html` so users can set them as + * a class directly on the `html` element. + */ + +body { + font-family: inherit; + line-height: inherit; +} + +/** + * 1. Prevent padding and border from affecting element width. + * + * We used to set this in the html element and inherit from + * the parent element for everything else. This caused issues + * in shadow-dom-enhanced elements like
where the content + * is wrapped by a div with box-sizing set to `content-box`. + * + * https://github.com/mozdevs/cssremedy/issues/4 + * + * + * 2. Allow adding a border to an element by just adding a border-width. + * + * By default, the way the browser specifies that an element should have no + * border is by setting it's border-style to `none` in the user-agent + * stylesheet. + * + * In order to easily add borders to elements by just setting the `border-width` + * property, we change the default border-style for all elements to `solid`, and + * use border-width to hide them instead. This way our `border` utilities only + * need to set the `border-width` property instead of the entire `border` + * shorthand, making our border utilities much more straightforward to compose. + * + * https://github.com/tailwindcss/tailwindcss/pull/116 + */ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +/* + * Ensure horizontal rules are visible by default + */ + +hr { + border-top-width: 1px; +} + +/** + * Undo the `border-style: none` reset that Normalize applies to images so that + * our `border-{width}` utilities have the expected effect. + * + * The Normalize reset is unnecessary for us since we default the border-width + * to 0 on all elements. + * + * https://github.com/tailwindcss/tailwindcss/issues/362 + */ + +img { + border-style: solid; +} + +textarea { + resize: vertical; +} + +input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { + color: #9ca3af; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + color: #9ca3af; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + color: #9ca3af; +} + +input::-ms-input-placeholder, textarea::-ms-input-placeholder { + color: #9ca3af; +} + +input::placeholder, +textarea::placeholder { + color: #9ca3af; +} + +button, +[role="button"] { + cursor: pointer; +} + +table { + border-collapse: collapse; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/** + * Reset links to optimize for opt-in styling instead of + * opt-out. + */ + +a { + color: inherit; + text-decoration: inherit; +} + +/** + * Reset form element properties that are easy to forget to + * style explicitly so you don't inadvertently introduce + * styles that deviate from your design system. These styles + * supplement a partial reset that is already applied by + * normalize.css. + */ + +button, +input, +optgroup, +select, +textarea { + padding: 0; + line-height: inherit; + color: inherit; +} + +/** + * Use the configured 'mono' font family for elements that + * are expected to be rendered with a monospace font, falling + * back to the system monospace stack if there is no configured + * 'mono' font family. + */ + +pre, +code, +kbd, +samp { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/** + * Make replaced elements `display: block` by default as that's + * the behavior you want almost all of the time. Inspired by + * CSS Remedy, with `svg` added as well. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + vertical-align: middle; +} + +/** + * Constrain images and videos to the parent width and preserve + * their instrinsic aspect ratio. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +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; + } +} + +@media (min-width: 1536px) { + .container { + max-width: 1536px; + } +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); +} + +.space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} + +.space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + +.space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} + +.space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); +} + +.space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} + +.space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); +} + +.space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} + +.space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); +} + +.space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); +} + +.space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); +} + +.space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); +} + +.space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); +} + +.space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); +} + +.space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); +} + +.space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); +} + +.space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); +} + +.space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); +} + +.space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); +} + +.space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); +} + +.space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); +} + +.space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); +} + +.space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); +} + +.space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); +} + +.space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); +} + +.space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); +} + +.space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); +} + +.space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); +} + +.space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} + +.space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} + +.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} + +.space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); +} + +.space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); +} + +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; +} + +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; +} + +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); +} + +.divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); +} + +.divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); +} + +.divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); +} + +.divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + +.divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; +} + +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; +} + +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; +} + +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; +} + +.divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); +} + +.divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); +} + +.divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); +} + +.divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); +} + +.divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); +} + +.divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); +} + +.divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); +} + +.divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); +} + +.divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); +} + +.divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); +} + +.divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); +} + +.divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); +} + +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); +} + +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); +} + +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); +} + +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); +} + +.divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); +} + +.divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); +} + +.divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); +} + +.divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); +} + +.divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); +} + +.divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); +} + +.divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); +} + +.divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); +} + +.divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); +} + +.divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); +} + +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); +} + +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); +} + +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); +} + +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); +} + +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); +} + +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); +} + +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); +} + +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); +} + +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); +} + +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); +} + +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); +} + +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); +} + +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); +} + +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); +} + +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); +} + +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); +} + +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); +} + +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); +} + +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); +} + +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); +} + +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); +} + +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); +} + +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); +} + +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); +} + +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); +} + +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); +} + +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); +} + +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); +} + +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); +} + +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); +} + +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); +} + +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); +} + +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); +} + +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); +} + +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); +} + +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); +} + +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); +} + +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); +} + +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); +} + +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); +} + +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); +} + +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); +} + +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); +} + +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); +} + +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); +} + +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); +} + +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); +} + +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); +} + +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); +} + +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); +} + +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; +} + +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; +} + +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; +} + +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; +} + +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; +} + +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; +} + +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; +} + +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; +} + +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; +} + +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; +} + +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; +} + +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; +} + +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; +} + +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; +} + +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; +} + +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; +} + +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; +} + +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; +} + +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; +} + +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; +} + +.bg-clip-padding { + background-clip: padding-box; +} + +.bg-clip-content { + background-clip: content-box; +} + +.bg-clip-text { + -webkit-background-clip: text; + background-clip: text; +} + +.bg-current { + background-color: currentColor; +} + +.bg-transparent { + background-color: transparent; +} + +.bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-current { + background-color: currentColor; +} + +.group:hover .group-hover\:bg-transparent { + background-color: transparent; +} + +.group:hover .group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-current:focus-within { + background-color: currentColor; +} + +.focus-within\:bg-transparent:focus-within { + background-color: transparent; +} + +.focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-current:hover { + background-color: currentColor; +} + +.hover\:bg-transparent:hover { + background-color: transparent; +} + +.hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-current:focus { + background-color: currentColor; +} + +.focus\:bg-transparent:focus { + background-color: transparent; +} + +.focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.bg-none { + background-image: none; +} + +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); +} + +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +} + +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); +} + +.from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.to-current { + --tw-gradient-to: currentColor; +} + +.to-transparent { + --tw-gradient-to: transparent; +} + +.to-black { + --tw-gradient-to: #000; +} + +.to-white { + --tw-gradient-to: #fff; +} + +.to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; +} + +.to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; +} + +.to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; +} + +.to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; +} + +.to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; +} + +.to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; +} + +.to-darkCoolGray-600 { + --tw-gradient-to: #344052; +} + +.to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; +} + +.to-darkCoolGray-800 { + --tw-gradient-to: #232B37; +} + +.to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; +} + +.to-coolGray-50 { + --tw-gradient-to: #F7F8F9; +} + +.to-coolGray-100 { + --tw-gradient-to: #EEF0F3; +} + +.to-coolGray-200 { + --tw-gradient-to: #D5DAE1; +} + +.to-coolGray-300 { + --tw-gradient-to: #BBC3CF; +} + +.to-coolGray-400 { + --tw-gradient-to: #8896AB; +} + +.to-coolGray-500 { + --tw-gradient-to: #556987; +} + +.to-coolGray-600 { + --tw-gradient-to: #4D5F7A; +} + +.to-coolGray-700 { + --tw-gradient-to: #404F65; +} + +.to-coolGray-800 { + --tw-gradient-to: #333F51; +} + +.to-coolGray-900 { + --tw-gradient-to: #2A3342; +} + +.to-indigo-50 { + --tw-gradient-to: #F8F6FF; +} + +.to-indigo-100 { + --tw-gradient-to: #F0EEFF; +} + +.to-indigo-200 { + --tw-gradient-to: #DAD4FF; +} + +.to-indigo-300 { + --tw-gradient-to: #C3B9FF; +} + +.to-indigo-400 { + --tw-gradient-to: #9685FF; +} + +.to-indigo-500 { + --tw-gradient-to: #6951FF; +} + +.to-indigo-600 { + --tw-gradient-to: #5F49E6; +} + +.to-indigo-700 { + --tw-gradient-to: #4F3DBF; +} + +.to-indigo-800 { + --tw-gradient-to: #3F3199; +} + +.to-indigo-900 { + --tw-gradient-to: #33287D; +} + +.to-violet-50 { + --tw-gradient-to: #FBF7FF; +} + +.to-violet-100 { + --tw-gradient-to: #F6EEFE; +} + +.to-violet-200 { + --tw-gradient-to: #E9D5FD; +} + +.to-violet-300 { + --tw-gradient-to: #DCBBFC; +} + +.to-violet-400 { + --tw-gradient-to: #C288F9; +} + +.to-violet-500 { + --tw-gradient-to: #A855F7; +} + +.to-violet-600 { + --tw-gradient-to: #974DDE; +} + +.to-violet-700 { + --tw-gradient-to: #7E40B9; +} + +.to-violet-800 { + --tw-gradient-to: #653394; +} + +.to-violet-900 { + --tw-gradient-to: #522A79; +} + +.to-yellow-50 { + --tw-gradient-to: #FFFAF3; +} + +.to-yellow-100 { + --tw-gradient-to: #FEF5E7; +} + +.to-yellow-200 { + --tw-gradient-to: #FDE7C2; +} + +.to-yellow-300 { + --tw-gradient-to: #FBD89D; +} + +.to-yellow-400 { + --tw-gradient-to: #F8BB54; +} + +.to-yellow-500 { + --tw-gradient-to: #F59E0B; +} + +.to-yellow-600 { + --tw-gradient-to: #DD8E0A; +} + +.to-yellow-700 { + --tw-gradient-to: #B87708; +} + +.to-yellow-800 { + --tw-gradient-to: #935F07; +} + +.to-yellow-900 { + --tw-gradient-to: #784D05; +} + +.to-red-50 { + --tw-gradient-to: #FEF7F6; +} + +.to-red-100 { + --tw-gradient-to: #FDEEEC; +} + +.to-red-200 { + --tw-gradient-to: #FBD6D0; +} + +.to-red-300 { + --tw-gradient-to: #F9BDB4; +} + +.to-red-400 { + --tw-gradient-to: #F48B7C; +} + +.to-red-500 { + --tw-gradient-to: #EF5844; +} + +.to-red-600 { + --tw-gradient-to: #D7503D; +} + +.to-red-700 { + --tw-gradient-to: #B34333; +} + +.to-red-800 { + --tw-gradient-to: #8F3529; +} + +.to-red-900 { + --tw-gradient-to: #752C21; +} + +.to-green-50 { + --tw-gradient-to: #F4FDF7; +} + +.to-green-100 { + --tw-gradient-to: #EAFAF0; +} + +.to-green-200 { + --tw-gradient-to: #CAF4D9; +} + +.to-green-300 { + --tw-gradient-to: #AAEDC3; +} + +.to-green-400 { + --tw-gradient-to: #6ADF95; +} + +.to-green-500 { + --tw-gradient-to: #2AD167; +} + +.to-green-600 { + --tw-gradient-to: #26BC5E; +} + +.to-green-700 { + --tw-gradient-to: #209D4E; +} + +.to-green-800 { + --tw-gradient-to: #197D3E; +} + +.to-green-900 { + --tw-gradient-to: #156633; +} + +.to-blue-50 { + --tw-gradient-to: #F5F9FF; +} + +.to-blue-100 { + --tw-gradient-to: #EBF3FE; +} + +.to-blue-200 { + --tw-gradient-to: #CEE0FD; +} + +.to-blue-300 { + --tw-gradient-to: #B1CDFB; +} + +.to-blue-400 { + --tw-gradient-to: #76A8F9; +} + +.to-blue-500 { + --tw-gradient-to: #3B82F6; +} + +.to-blue-600 { + --tw-gradient-to: #3575DD; +} + +.to-blue-700 { + --tw-gradient-to: #2C62B9; +} + +.to-blue-800 { + --tw-gradient-to: #234E94; +} + +.to-blue-900 { + --tw-gradient-to: #1D4079; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563; +} + +.to-gray-700 { + --tw-gradient-to: #374151; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937; +} + +.to-gray-900 { + --tw-gradient-to: #111827; +} + +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff; +} + +.hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; +} + +.hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; +} + +.hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; +} + +.hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; +} + +.hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; +} + +.hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; +} + +.hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; +} + +.hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; +} + +.hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; +} + +.hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; +} + +.hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; +} + +.hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; +} + +.hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; +} + +.hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; +} + +.hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; +} + +.hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; +} + +.hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; +} + +.hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; +} + +.hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; +} + +.hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; +} + +.hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; +} + +.hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; +} + +.hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; +} + +.hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; +} + +.hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; +} + +.hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; +} + +.hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; +} + +.hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; +} + +.hover\:to-violet-800:hover { + --tw-gradient-to: #653394; +} + +.hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #B34333; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #752C21; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #156633; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; +} + +.focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.focus\:to-current:focus { + --tw-gradient-to: currentColor; +} + +.focus\:to-transparent:focus { + --tw-gradient-to: transparent; +} + +.focus\:to-black:focus { + --tw-gradient-to: #000; +} + +.focus\:to-white:focus { + --tw-gradient-to: #fff; +} + +.focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; +} + +.focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; +} + +.focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; +} + +.focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; +} + +.focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; +} + +.focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; +} + +.focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; +} + +.focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; +} + +.focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; +} + +.focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; +} + +.focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; +} + +.focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; +} + +.focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; +} + +.focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; +} + +.focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; +} + +.focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; +} + +.focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; +} + +.focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; +} + +.focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; +} + +.focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; +} + +.focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; +} + +.focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; +} + +.focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; +} + +.focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; +} + +.focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; +} + +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; +} + +.focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; +} + +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; +} + +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; +} + +.focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; +} + +.focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; +} + +.focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; +} + +.focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; +} + +.focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; +} + +.focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; +} + +.focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; +} + +.focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; +} + +.focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; +} + +.focus\:to-violet-800:focus { + --tw-gradient-to: #653394; +} + +.focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; +} + +.focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; +} + +.focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; +} + +.focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; +} + +.focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; +} + +.focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; +} + +.focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; +} + +.focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; +} + +.focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; +} + +.focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; +} + +.focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; +} + +.focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; +} + +.focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; +} + +.focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; +} + +.focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; +} + +.focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; +} + +.focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; +} + +.focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; +} + +.focus\:to-red-700:focus { + --tw-gradient-to: #B34333; +} + +.focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; +} + +.focus\:to-red-900:focus { + --tw-gradient-to: #752C21; +} + +.focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; +} + +.focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; +} + +.focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; +} + +.focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; +} + +.focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; +} + +.focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; +} + +.focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; +} + +.focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; +} + +.focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; +} + +.focus\:to-green-900:focus { + --tw-gradient-to: #156633; +} + +.focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; +} + +.focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; +} + +.focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; +} + +.focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; +} + +.focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; +} + +.focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; +} + +.focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; +} + +.focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; +} + +.focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; +} + +.focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; +} + +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; +} + +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; +} + +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; +} + +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; +} + +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; +} + +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; +} + +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; +} + +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151; +} + +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; +} + +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827; +} + +.bg-opacity-0 { + --tw-bg-opacity: 0; +} + +.bg-opacity-5 { + --tw-bg-opacity: 0.05; +} + +.bg-opacity-10 { + --tw-bg-opacity: 0.1; +} + +.bg-opacity-20 { + --tw-bg-opacity: 0.2; +} + +.bg-opacity-25 { + --tw-bg-opacity: 0.25; +} + +.bg-opacity-30 { + --tw-bg-opacity: 0.3; +} + +.bg-opacity-40 { + --tw-bg-opacity: 0.4; +} + +.bg-opacity-50 { + --tw-bg-opacity: 0.5; +} + +.bg-opacity-60 { + --tw-bg-opacity: 0.6; +} + +.bg-opacity-70 { + --tw-bg-opacity: 0.7; +} + +.bg-opacity-75 { + --tw-bg-opacity: 0.75; +} + +.bg-opacity-80 { + --tw-bg-opacity: 0.8; +} + +.bg-opacity-90 { + --tw-bg-opacity: 0.9; +} + +.bg-opacity-95 { + --tw-bg-opacity: 0.95; +} + +.bg-opacity-100 { + --tw-bg-opacity: 1; +} + +.group:hover .group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; +} + +.group:hover .group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; +} + +.group:hover .group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; +} + +.group:hover .group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; +} + +.group:hover .group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; +} + +.group:hover .group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; +} + +.group:hover .group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; +} + +.group:hover .group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; +} + +.group:hover .group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; +} + +.group:hover .group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; +} + +.group:hover .group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; +} + +.group:hover .group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; +} + +.group:hover .group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; +} + +.group:hover .group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; +} + +.group:hover .group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; +} + +.focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; +} + +.focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; +} + +.focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; +} + +.focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; +} + +.focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; +} + +.focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; +} + +.focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; +} + +.focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; +} + +.focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; +} + +.focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; +} + +.focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; +} + +.focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; +} + +.focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; +} + +.focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; +} + +.focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; +} + +.hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; +} + +.hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; +} + +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; +} + +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; +} + +.hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; +} + +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; +} + +.hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; +} + +.hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; +} + +.hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; +} + +.hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; +} + +.hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; +} + +.hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; +} + +.hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; +} + +.hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; +} + +.hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; +} + +.focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; +} + +.focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; +} + +.focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; +} + +.focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; +} + +.focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; +} + +.focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; +} + +.focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; +} + +.focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; +} + +.focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; +} + +.focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; +} + +.focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; +} + +.focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; +} + +.focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; +} + +.focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; +} + +.focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; +} + +.border-transparent { + border-color: transparent; +} + +.border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-current { + border-color: currentColor; +} + +.group:hover .group-hover\:border-transparent { + border-color: transparent; +} + +.group:hover .group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.focus-within\:border-current:focus-within { + border-color: currentColor; +} + +.focus-within\:border-transparent:focus-within { + border-color: transparent; +} + +.focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.hover\:border-current:hover { + border-color: currentColor; +} + +.hover\:border-transparent:hover { + border-color: transparent; +} + +.hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.focus\:border-current:focus { + border-color: currentColor; +} + +.focus\:border-transparent:focus { + border-color: transparent; +} + +.focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.border-opacity-0 { + --tw-border-opacity: 0; +} + +.border-opacity-5 { + --tw-border-opacity: 0.05; +} + +.border-opacity-10 { + --tw-border-opacity: 0.1; +} + +.border-opacity-20 { + --tw-border-opacity: 0.2; +} + +.border-opacity-25 { + --tw-border-opacity: 0.25; +} + +.border-opacity-30 { + --tw-border-opacity: 0.3; +} + +.border-opacity-40 { + --tw-border-opacity: 0.4; +} + +.border-opacity-50 { + --tw-border-opacity: 0.5; +} + +.border-opacity-60 { + --tw-border-opacity: 0.6; +} + +.border-opacity-70 { + --tw-border-opacity: 0.7; +} + +.border-opacity-75 { + --tw-border-opacity: 0.75; +} + +.border-opacity-80 { + --tw-border-opacity: 0.8; +} + +.border-opacity-90 { + --tw-border-opacity: 0.9; +} + +.border-opacity-95 { + --tw-border-opacity: 0.95; +} + +.border-opacity-100 { + --tw-border-opacity: 1; +} + +.group:hover .group-hover\:border-opacity-0 { + --tw-border-opacity: 0; +} + +.group:hover .group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; +} + +.group:hover .group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; +} + +.group:hover .group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; +} + +.group:hover .group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; +} + +.group:hover .group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; +} + +.group:hover .group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; +} + +.group:hover .group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; +} + +.group:hover .group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; +} + +.group:hover .group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; +} + +.group:hover .group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; +} + +.group:hover .group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; +} + +.group:hover .group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; +} + +.group:hover .group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; +} + +.group:hover .group-hover\:border-opacity-100 { + --tw-border-opacity: 1; +} + +.focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; +} + +.focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; +} + +.focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; +} + +.focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; +} + +.focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; +} + +.focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; +} + +.focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; +} + +.focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; +} + +.focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; +} + +.focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; +} + +.focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; +} + +.focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; +} + +.focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; +} + +.focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; +} + +.focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; +} + +.hover\:border-opacity-0:hover { + --tw-border-opacity: 0; +} + +.hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; +} + +.hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; +} + +.hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; +} + +.hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; +} + +.hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; +} + +.hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; +} + +.hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; +} + +.hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; +} + +.hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; +} + +.hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; +} + +.hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; +} + +.hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; +} + +.hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; +} + +.hover\:border-opacity-100:hover { + --tw-border-opacity: 1; +} + +.focus\:border-opacity-0:focus { + --tw-border-opacity: 0; +} + +.focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; +} + +.focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; +} + +.focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; +} + +.focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; +} + +.focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; +} + +.focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; +} + +.focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; +} + +.focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; +} + +.focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; +} + +.focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; +} + +.focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; +} + +.focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; +} + +.focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; +} + +.focus\:border-opacity-100:focus { + --tw-border-opacity: 1; +} + +.rounded-none { + border-radius: 0; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded { + border-radius: 0.25rem; +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded-lg { + border-radius: 0.5rem; +} + +.rounded-xl { + border-radius: 0.675rem; +} + +.rounded-2xl { + border-radius: 0.75rem; +} + +.rounded-3xl { + border-radius: 0.875rem; +} + +.rounded-4xl { + border-radius: 1rem; +} + +.rounded-5xl { + border-radius: 1.25rem; +} + +.rounded-6xl { + border-radius: 1.375rem; +} + +.rounded-7xl { + border-radius: 1.5rem; +} + +.rounded-8xl { + border-radius: 2rem; +} + +.rounded-9xl { + border-radius: 2.25rem; +} + +.rounded-10xl { + border-radius: 2.5rem; +} + +.rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; +} + +.rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; +} + +.rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; +} + +.rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; +} + +.rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; +} + +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} + +.rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + +.rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; +} + +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; +} + +.rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; +} + +.rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; +} + +.rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; +} + +.rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; +} + +.rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; +} + +.rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; +} + +.rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; +} + +.rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; +} + +.rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; +} + +.rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; +} + +.rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; +} + +.rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; +} + +.rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; +} + +.rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; +} + +.rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; +} + +.rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; +} + +.rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; +} + +.rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; +} + +.rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; +} + +.rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; +} + +.rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; +} + +.rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; +} + +.rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; +} + +.rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; +} + +.rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; +} + +.rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; +} + +.rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; +} + +.rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; +} + +.rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; +} + +.rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; +} + +.rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; +} + +.rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; +} + +.rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; +} + +.rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; +} + +.rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; +} + +.rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; +} + +.rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; +} + +.rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; +} + +.rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; +} + +.rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; +} + +.rounded-l-11xl { + 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: 0.125rem; +} + +.rounded-tr-sm { + border-top-right-radius: 0.125rem; +} + +.rounded-br-sm { + border-bottom-right-radius: 0.125rem; +} + +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem; +} + +.rounded-tl { + border-top-left-radius: 0.25rem; +} + +.rounded-tr { + border-top-right-radius: 0.25rem; +} + +.rounded-br { + border-bottom-right-radius: 0.25rem; +} + +.rounded-bl { + border-bottom-left-radius: 0.25rem; +} + +.rounded-tl-md { + border-top-left-radius: 0.375rem; +} + +.rounded-tr-md { + border-top-right-radius: 0.375rem; +} + +.rounded-br-md { + border-bottom-right-radius: 0.375rem; +} + +.rounded-bl-md { + border-bottom-left-radius: 0.375rem; +} + +.rounded-tl-lg { + border-top-left-radius: 0.5rem; +} + +.rounded-tr-lg { + border-top-right-radius: 0.5rem; +} + +.rounded-br-lg { + border-bottom-right-radius: 0.5rem; +} + +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem; +} + +.rounded-tl-xl { + border-top-left-radius: 0.675rem; +} + +.rounded-tr-xl { + border-top-right-radius: 0.675rem; +} + +.rounded-br-xl { + border-bottom-right-radius: 0.675rem; +} + +.rounded-bl-xl { + border-bottom-left-radius: 0.675rem; +} + +.rounded-tl-2xl { + border-top-left-radius: 0.75rem; +} + +.rounded-tr-2xl { + border-top-right-radius: 0.75rem; +} + +.rounded-br-2xl { + border-bottom-right-radius: 0.75rem; +} + +.rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; +} + +.rounded-tl-3xl { + border-top-left-radius: 0.875rem; +} + +.rounded-tr-3xl { + border-top-right-radius: 0.875rem; +} + +.rounded-br-3xl { + border-bottom-right-radius: 0.875rem; +} + +.rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; +} + +.rounded-tl-4xl { + border-top-left-radius: 1rem; +} + +.rounded-tr-4xl { + border-top-right-radius: 1rem; +} + +.rounded-br-4xl { + border-bottom-right-radius: 1rem; +} + +.rounded-bl-4xl { + border-bottom-left-radius: 1rem; +} + +.rounded-tl-5xl { + border-top-left-radius: 1.25rem; +} + +.rounded-tr-5xl { + border-top-right-radius: 1.25rem; +} + +.rounded-br-5xl { + border-bottom-right-radius: 1.25rem; +} + +.rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; +} + +.rounded-tl-6xl { + border-top-left-radius: 1.375rem; +} + +.rounded-tr-6xl { + border-top-right-radius: 1.375rem; +} + +.rounded-br-6xl { + border-bottom-right-radius: 1.375rem; +} + +.rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; +} + +.rounded-tl-7xl { + border-top-left-radius: 1.5rem; +} + +.rounded-tr-7xl { + border-top-right-radius: 1.5rem; +} + +.rounded-br-7xl { + border-bottom-right-radius: 1.5rem; +} + +.rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; +} + +.rounded-tl-8xl { + border-top-left-radius: 2rem; +} + +.rounded-tr-8xl { + border-top-right-radius: 2rem; +} + +.rounded-br-8xl { + border-bottom-right-radius: 2rem; +} + +.rounded-bl-8xl { + border-bottom-left-radius: 2rem; +} + +.rounded-tl-9xl { + border-top-left-radius: 2.25rem; +} + +.rounded-tr-9xl { + border-top-right-radius: 2.25rem; +} + +.rounded-br-9xl { + border-bottom-right-radius: 2.25rem; +} + +.rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; +} + +.rounded-tl-10xl { + border-top-left-radius: 2.5rem; +} + +.rounded-tr-10xl { + border-top-right-radius: 2.5rem; +} + +.rounded-br-10xl { + border-bottom-right-radius: 2.5rem; +} + +.rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; +} + +.rounded-tl-11xl { + border-top-left-radius: 5rem; +} + +.rounded-tr-11xl { + border-top-right-radius: 5rem; +} + +.rounded-br-11xl { + border-bottom-right-radius: 5rem; +} + +.rounded-bl-11xl { + 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 { + 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; +} + +.contents { + display: contents; +} + +.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-nowrap { + flex-wrap: nowrap; +} + +.place-items-auto { + place-items: auto; +} + +.place-items-start { + place-items: start; +} + +.place-items-end { + place-items: end; +} + +.place-items-center { + place-items: center; +} + +.place-items-stretch { + place-items: stretch; +} + +.place-content-center { + place-content: center; +} + +.place-content-start { + place-content: start; +} + +.place-content-end { + place-content: end; +} + +.place-content-between { + place-content: space-between; +} + +.place-content-around { + place-content: space-around; +} + +.place-content-evenly { + place-content: space-evenly; +} + +.place-content-stretch { + place-content: stretch; +} + +.place-self-auto { + place-self: auto; +} + +.place-self-start { + place-self: start; +} + +.place-self-end { + place-self: end; +} + +.place-self-center { + place-self: center; +} + +.place-self-stretch { + place-self: stretch; +} + +.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; +} + +.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; +} + +.content-evenly { + align-content: space-evenly; +} + +.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-items-auto { + justify-items: auto; +} + +.justify-items-start { + justify-items: start; +} + +.justify-items-end { + justify-items: end; +} + +.justify-items-center { + justify-items: center; +} + +.justify-items-stretch { + justify-items: 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; +} + +.justify-self-auto { + justify-self: auto; +} + +.justify-self-start { + justify-self: start; +} + +.justify-self-end { + justify-self: end; +} + +.justify-self-center { + justify-self: center; +} + +.justify-self-stretch { + justify-self: stretch; +} + +.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; +} + +.clear-left { + clear: left; +} + +.clear-right { + clear: right; +} + +.clear-both { + clear: both; +} + +.clear-none { + clear: none; +} + +.font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, 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; +} + +.h-0 { + height: 0px; +} + +.h-1 { + height: 0.25rem; +} + +.h-2 { + height: 0.5rem; +} + +.h-3 { + height: 0.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-14 { + height: 3.5rem; +} + +.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: 0.125rem; +} + +.h-1\.5 { + height: 0.375rem; +} + +.h-2\.5 { + height: 0.625rem; +} + +.h-3\.5 { + height: 0.875rem; +} + +.h-full { + height: 100%; +} + +.h-screen { + height: 100vh; +} + +.text-xxs { + font-size: 0.6875rem; +} + +.text-xs { + font-size: 0.75rem; +} + +.text-sm { + font-size: 0.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: 3.75rem; +} + +.text-7xl { + font-size: 4.5rem; +} + +.text-8xl { + font-size: 6rem; +} + +.text-9xl { + font-size: 8rem; +} + +.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: 0px; +} + +.m-1 { + margin: 0.25rem; +} + +.m-2 { + margin: 0.5rem; +} + +.m-3 { + margin: 0.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-14 { + margin: 3.5rem; +} + +.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: 0.125rem; +} + +.m-1\.5 { + margin: 0.375rem; +} + +.m-2\.5 { + margin: 0.625rem; +} + +.m-3\.5 { + margin: 0.875rem; +} + +.-m-0 { + margin: 0px; +} + +.-m-1 { + margin: -0.25rem; +} + +.-m-2 { + margin: -0.5rem; +} + +.-m-3 { + margin: -0.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-14 { + margin: -3.5rem; +} + +.-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: -0.125rem; +} + +.-m-1\.5 { + margin: -0.375rem; +} + +.-m-2\.5 { + margin: -0.625rem; +} + +.-m-3\.5 { + margin: -0.875rem; +} + +.my-0 { + margin-top: 0px; + margin-bottom: 0px; +} + +.mx-0 { + margin-left: 0px; + margin-right: 0px; +} + +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; +} + +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; +} + +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; +} + +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; +} + +.mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; +} + +.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: 0.125rem; + margin-bottom: 0.125rem; +} + +.mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; +} + +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; +} + +.mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; +} + +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} + +.mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; +} + +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; +} + +.mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; +} + +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; +} + +.-mx-0 { + margin-left: 0px; + margin-right: 0px; +} + +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; +} + +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; +} + +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; +} + +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; +} + +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; +} + +.-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; +} + +.-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; +} + +.-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: -0.125rem; + margin-bottom: -0.125rem; +} + +.-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; +} + +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; +} + +.-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; +} + +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; +} + +.-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; +} + +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; +} + +.-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; +} + +.mt-0 { + margin-top: 0px; +} + +.mr-0 { + margin-right: 0px; +} + +.mb-0 { + margin-bottom: 0px; +} + +.ml-0 { + margin-left: 0px; +} + +.mt-1 { + margin-top: 0.25rem; +} + +.mr-1 { + margin-right: 0.25rem; +} + +.mb-1 { + margin-bottom: 0.25rem; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.mt-2 { + margin-top: 0.5rem; +} + +.mr-2 { + margin-right: 0.5rem; +} + +.mb-2 { + margin-bottom: 0.5rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.mt-3 { + margin-top: 0.75rem; +} + +.mr-3 { + margin-right: 0.75rem; +} + +.mb-3 { + margin-bottom: 0.75rem; +} + +.ml-3 { + margin-left: 0.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-14 { + margin-top: 3.5rem; +} + +.mr-14 { + margin-right: 3.5rem; +} + +.mb-14 { + margin-bottom: 3.5rem; +} + +.ml-14 { + margin-left: 3.5rem; +} + +.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: 0.125rem; +} + +.mr-0\.5 { + margin-right: 0.125rem; +} + +.mb-0\.5 { + margin-bottom: 0.125rem; +} + +.ml-0\.5 { + margin-left: 0.125rem; +} + +.mt-1\.5 { + margin-top: 0.375rem; +} + +.mr-1\.5 { + margin-right: 0.375rem; +} + +.mb-1\.5 { + margin-bottom: 0.375rem; +} + +.ml-1\.5 { + margin-left: 0.375rem; +} + +.mt-2\.5 { + margin-top: 0.625rem; +} + +.mr-2\.5 { + margin-right: 0.625rem; +} + +.mb-2\.5 { + margin-bottom: 0.625rem; +} + +.ml-2\.5 { + margin-left: 0.625rem; +} + +.mt-3\.5 { + margin-top: 0.875rem; +} + +.mr-3\.5 { + margin-right: 0.875rem; +} + +.mb-3\.5 { + margin-bottom: 0.875rem; +} + +.ml-3\.5 { + margin-left: 0.875rem; +} + +.-mt-0 { + margin-top: 0px; +} + +.-mr-0 { + margin-right: 0px; +} + +.-mb-0 { + margin-bottom: 0px; +} + +.-ml-0 { + margin-left: 0px; +} + +.-mt-1 { + margin-top: -0.25rem; +} + +.-mr-1 { + margin-right: -0.25rem; +} + +.-mb-1 { + margin-bottom: -0.25rem; +} + +.-ml-1 { + margin-left: -0.25rem; +} + +.-mt-2 { + margin-top: -0.5rem; +} + +.-mr-2 { + margin-right: -0.5rem; +} + +.-mb-2 { + margin-bottom: -0.5rem; +} + +.-ml-2 { + margin-left: -0.5rem; +} + +.-mt-3 { + margin-top: -0.75rem; +} + +.-mr-3 { + margin-right: -0.75rem; +} + +.-mb-3 { + margin-bottom: -0.75rem; +} + +.-ml-3 { + margin-left: -0.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-14 { + margin-top: -3.5rem; +} + +.-mr-14 { + margin-right: -3.5rem; +} + +.-mb-14 { + margin-bottom: -3.5rem; +} + +.-ml-14 { + margin-left: -3.5rem; +} + +.-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: -0.125rem; +} + +.-mr-0\.5 { + margin-right: -0.125rem; +} + +.-mb-0\.5 { + margin-bottom: -0.125rem; +} + +.-ml-0\.5 { + margin-left: -0.125rem; +} + +.-mt-1\.5 { + margin-top: -0.375rem; +} + +.-mr-1\.5 { + margin-right: -0.375rem; +} + +.-mb-1\.5 { + margin-bottom: -0.375rem; +} + +.-ml-1\.5 { + margin-left: -0.375rem; +} + +.-mt-2\.5 { + margin-top: -0.625rem; +} + +.-mr-2\.5 { + margin-right: -0.625rem; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem; +} + +.-ml-2\.5 { + margin-left: -0.625rem; +} + +.-mt-3\.5 { + margin-top: -0.875rem; +} + +.-mr-3\.5 { + margin-right: -0.875rem; +} + +.-mb-3\.5 { + margin-bottom: -0.875rem; +} + +.-ml-3\.5 { + margin-left: -0.875rem; +} + +.max-h-full { + max-height: 100%; +} + +.max-h-screen { + max-height: 100vh; +} + +.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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; +} + +.max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; +} + +.max-w-prose { + max-width: 65ch; +} + +.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%; +} + +.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-5 { + opacity: 0.05; +} + +.opacity-10 { + opacity: 0.1; +} + +.opacity-20 { + opacity: 0.2; +} + +.opacity-25 { + opacity: 0.25; +} + +.opacity-30 { + opacity: 0.3; +} + +.opacity-40 { + opacity: 0.4; +} + +.opacity-50 { + opacity: 0.5; +} + +.opacity-60 { + opacity: 0.6; +} + +.opacity-70 { + opacity: 0.7; +} + +.opacity-75 { + opacity: 0.75; +} + +.opacity-80 { + opacity: 0.8; +} + +.opacity-90 { + opacity: 0.9; +} + +.opacity-95 { + opacity: 0.95; +} + +.opacity-100 { + opacity: 1; +} + +.group:hover .group-hover\:opacity-0 { + opacity: 0; +} + +.group:hover .group-hover\:opacity-5 { + opacity: 0.05; +} + +.group:hover .group-hover\:opacity-10 { + opacity: 0.1; +} + +.group:hover .group-hover\:opacity-20 { + opacity: 0.2; +} + +.group:hover .group-hover\:opacity-25 { + opacity: 0.25; +} + +.group:hover .group-hover\:opacity-30 { + opacity: 0.3; +} + +.group:hover .group-hover\:opacity-40 { + opacity: 0.4; +} + +.group:hover .group-hover\:opacity-50 { + opacity: 0.5; +} + +.group:hover .group-hover\:opacity-60 { + opacity: 0.6; +} + +.group:hover .group-hover\:opacity-70 { + opacity: 0.7; +} + +.group:hover .group-hover\:opacity-75 { + opacity: 0.75; +} + +.group:hover .group-hover\:opacity-80 { + opacity: 0.8; +} + +.group:hover .group-hover\:opacity-90 { + opacity: 0.9; +} + +.group:hover .group-hover\:opacity-95 { + opacity: 0.95; +} + +.group:hover .group-hover\:opacity-100 { + opacity: 1; +} + +.focus-within\:opacity-0:focus-within { + opacity: 0; +} + +.focus-within\:opacity-5:focus-within { + opacity: 0.05; +} + +.focus-within\:opacity-10:focus-within { + opacity: 0.1; +} + +.focus-within\:opacity-20:focus-within { + opacity: 0.2; +} + +.focus-within\:opacity-25:focus-within { + opacity: 0.25; +} + +.focus-within\:opacity-30:focus-within { + opacity: 0.3; +} + +.focus-within\:opacity-40:focus-within { + opacity: 0.4; +} + +.focus-within\:opacity-50:focus-within { + opacity: 0.5; +} + +.focus-within\:opacity-60:focus-within { + opacity: 0.6; +} + +.focus-within\:opacity-70:focus-within { + opacity: 0.7; +} + +.focus-within\:opacity-75:focus-within { + opacity: 0.75; +} + +.focus-within\:opacity-80:focus-within { + opacity: 0.8; +} + +.focus-within\:opacity-90:focus-within { + opacity: 0.9; +} + +.focus-within\:opacity-95:focus-within { + opacity: 0.95; +} + +.focus-within\:opacity-100:focus-within { + opacity: 1; +} + +.hover\:opacity-0:hover { + opacity: 0; +} + +.hover\:opacity-5:hover { + opacity: 0.05; +} + +.hover\:opacity-10:hover { + opacity: 0.1; +} + +.hover\:opacity-20:hover { + opacity: 0.2; +} + +.hover\:opacity-25:hover { + opacity: 0.25; +} + +.hover\:opacity-30:hover { + opacity: 0.3; +} + +.hover\:opacity-40:hover { + opacity: 0.4; +} + +.hover\:opacity-50:hover { + opacity: 0.5; +} + +.hover\:opacity-60:hover { + opacity: 0.6; +} + +.hover\:opacity-70:hover { + opacity: 0.7; +} + +.hover\:opacity-75:hover { + opacity: 0.75; +} + +.hover\:opacity-80:hover { + opacity: 0.8; +} + +.hover\:opacity-90:hover { + opacity: 0.9; +} + +.hover\:opacity-95:hover { + opacity: 0.95; +} + +.hover\:opacity-100:hover { + opacity: 1; +} + +.focus\:opacity-0:focus { + opacity: 0; +} + +.focus\:opacity-5:focus { + opacity: 0.05; +} + +.focus\:opacity-10:focus { + opacity: 0.1; +} + +.focus\:opacity-20:focus { + opacity: 0.2; +} + +.focus\:opacity-25:focus { + opacity: 0.25; +} + +.focus\:opacity-30:focus { + opacity: 0.3; +} + +.focus\:opacity-40:focus { + opacity: 0.4; +} + +.focus\:opacity-50:focus { + opacity: 0.5; +} + +.focus\:opacity-60:focus { + opacity: 0.6; +} + +.focus\:opacity-70:focus { + opacity: 0.7; +} + +.focus\:opacity-75:focus { + opacity: 0.75; +} + +.focus\:opacity-80:focus { + opacity: 0.8; +} + +.focus\:opacity-90:focus { + opacity: 0.9; +} + +.focus\:opacity-95:focus { + opacity: 0.95; +} + +.focus\:opacity-100:focus { + opacity: 1; +} + +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.outline-white { + outline: 2px dotted white; + outline-offset: 2px; +} + +.outline-black { + outline: 2px dotted black; + outline-offset: 2px; +} + +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; +} + +.focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; +} + +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; +} + +.focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; +} + +.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; +} + +.overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; +} + +.overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; +} + +.overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; +} + +.overscroll-y-auto { + overscroll-behavior-y: auto; +} + +.overscroll-y-contain { + overscroll-behavior-y: contain; +} + +.overscroll-y-none { + overscroll-behavior-y: none; +} + +.overscroll-x-auto { + overscroll-behavior-x: auto; +} + +.overscroll-x-contain { + overscroll-behavior-x: contain; +} + +.overscroll-x-none { + overscroll-behavior-x: none; +} + +.p-0 { + padding: 0px; +} + +.p-1 { + padding: 0.25rem; +} + +.p-2 { + padding: 0.5rem; +} + +.p-3 { + padding: 0.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-14 { + padding: 3.5rem; +} + +.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: 0.125rem; +} + +.p-1\.5 { + padding: 0.375rem; +} + +.p-2\.5 { + padding: 0.625rem; +} + +.p-3\.5 { + padding: 0.875rem; +} + +.py-0 { + padding-top: 0px; + padding-bottom: 0px; +} + +.px-0 { + padding-left: 0px; + padding-right: 0px; +} + +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} + +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} + +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} + +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} + +.px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; +} + +.px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; +} + +.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: 0.125rem; + padding-bottom: 0.125rem; +} + +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; +} + +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} + +.px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; +} + +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} + +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; +} + +.py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; +} + +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; +} + +.pt-0 { + padding-top: 0px; +} + +.pr-0 { + padding-right: 0px; +} + +.pb-0 { + padding-bottom: 0px; +} + +.pl-0 { + padding-left: 0px; +} + +.pt-1 { + padding-top: 0.25rem; +} + +.pr-1 { + padding-right: 0.25rem; +} + +.pb-1 { + padding-bottom: 0.25rem; +} + +.pl-1 { + padding-left: 0.25rem; +} + +.pt-2 { + padding-top: 0.5rem; +} + +.pr-2 { + padding-right: 0.5rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + +.pl-2 { + padding-left: 0.5rem; +} + +.pt-3 { + padding-top: 0.75rem; +} + +.pr-3 { + padding-right: 0.75rem; +} + +.pb-3 { + padding-bottom: 0.75rem; +} + +.pl-3 { + padding-left: 0.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-14 { + padding-top: 3.5rem; +} + +.pr-14 { + padding-right: 3.5rem; +} + +.pb-14 { + padding-bottom: 3.5rem; +} + +.pl-14 { + padding-left: 3.5rem; +} + +.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: 0.125rem; +} + +.pr-0\.5 { + padding-right: 0.125rem; +} + +.pb-0\.5 { + padding-bottom: 0.125rem; +} + +.pl-0\.5 { + padding-left: 0.125rem; +} + +.pt-1\.5 { + padding-top: 0.375rem; +} + +.pr-1\.5 { + padding-right: 0.375rem; +} + +.pb-1\.5 { + padding-bottom: 0.375rem; +} + +.pl-1\.5 { + padding-left: 0.375rem; +} + +.pt-2\.5 { + padding-top: 0.625rem; +} + +.pr-2\.5 { + padding-right: 0.625rem; +} + +.pb-2\.5 { + padding-bottom: 0.625rem; +} + +.pl-2\.5 { + padding-left: 0.625rem; +} + +.pt-3\.5 { + padding-top: 0.875rem; +} + +.pr-3\.5 { + padding-right: 0.875rem; +} + +.pb-3\.5 { + padding-bottom: 0.875rem; +} + +.pl-3\.5 { + padding-left: 0.875rem; +} + +.placeholder-current::-webkit-input-placeholder { + color: currentColor; +} + +.placeholder-current::-moz-placeholder { + color: currentColor; +} + +.placeholder-current:-ms-input-placeholder { + color: currentColor; +} + +.placeholder-current::-ms-input-placeholder { + color: currentColor; +} + +.placeholder-current::placeholder { + color: currentColor; +} + +.placeholder-transparent::-webkit-input-placeholder { + color: transparent; +} + +.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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus::placeholder { + color: currentColor; +} + +.focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; +} + +.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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; +} + +.inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; +} + +.inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; +} + +.inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; +} + +.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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; +} + +.inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; +} + +.inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; +} + +.inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; +} + +.-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; +} + +.-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; +} + +.-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; +} + +.-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; +} + +.-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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; +} + +.-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; +} + +.-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; +} + +.-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; +} + +.-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; +} + +.-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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; +} + +.inset-y-0 { + top: 0px; + bottom: 0px; +} + +.inset-x-0 { + right: 0px; + left: 0px; +} + +.inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; +} + +.inset-x-1 { + right: 0.25rem; + left: 0.25rem; +} + +.inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; +} + +.inset-x-2 { + right: 0.5rem; + left: 0.5rem; +} + +.inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; +} + +.inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; +} + +.inset-x-14 { + right: 3.5rem; + left: 3.5rem; +} + +.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: 0.125rem; + bottom: 0.125rem; +} + +.inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; +} + +.inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; +} + +.inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; +} + +.inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; +} + +.inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; +} + +.inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; +} + +.inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; +} + +.-inset-y-0 { + top: 0px; + bottom: 0px; +} + +.-inset-x-0 { + right: 0px; + left: 0px; +} + +.-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; +} + +.-inset-x-1 { + right: -0.25rem; + left: -0.25rem; +} + +.-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; +} + +.-inset-x-2 { + right: -0.5rem; + left: -0.5rem; +} + +.-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; +} + +.-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; +} + +.-inset-x-14 { + right: -3.5rem; + left: -3.5rem; +} + +.-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-px { + top: -1px; + bottom: -1px; +} + +.-inset-x-px { + right: -1px; + left: -1px; +} + +.-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; +} + +.-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; +} + +.-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; +} + +.-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; +} + +.-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; +} + +.-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; +} + +.-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; +} + +.-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; +} + +.inset-x-full { + right: 100%; + left: 100%; +} + +.-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-full { + top: -100%; + bottom: -100%; +} + +.-inset-x-full { + right: -100%; + left: -100%; +} + +.top-0 { + top: 0px; +} + +.right-0 { + right: 0px; +} + +.bottom-0 { + bottom: 0px; +} + +.left-0 { + left: 0px; +} + +.top-1 { + top: 0.25rem; +} + +.right-1 { + right: 0.25rem; +} + +.bottom-1 { + bottom: 0.25rem; +} + +.left-1 { + left: 0.25rem; +} + +.top-2 { + top: 0.5rem; +} + +.right-2 { + right: 0.5rem; +} + +.bottom-2 { + bottom: 0.5rem; +} + +.left-2 { + left: 0.5rem; +} + +.top-3 { + top: 0.75rem; +} + +.right-3 { + right: 0.75rem; +} + +.bottom-3 { + bottom: 0.75rem; +} + +.left-3 { + left: 0.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-14 { + top: 3.5rem; +} + +.right-14 { + right: 3.5rem; +} + +.bottom-14 { + bottom: 3.5rem; +} + +.left-14 { + left: 3.5rem; +} + +.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: 0.125rem; +} + +.right-0\.5 { + right: 0.125rem; +} + +.bottom-0\.5 { + bottom: 0.125rem; +} + +.left-0\.5 { + left: 0.125rem; +} + +.top-1\.5 { + top: 0.375rem; +} + +.right-1\.5 { + right: 0.375rem; +} + +.bottom-1\.5 { + bottom: 0.375rem; +} + +.left-1\.5 { + left: 0.375rem; +} + +.top-2\.5 { + top: 0.625rem; +} + +.right-2\.5 { + right: 0.625rem; +} + +.bottom-2\.5 { + bottom: 0.625rem; +} + +.left-2\.5 { + left: 0.625rem; +} + +.top-3\.5 { + top: 0.875rem; +} + +.right-3\.5 { + right: 0.875rem; +} + +.bottom-3\.5 { + bottom: 0.875rem; +} + +.left-3\.5 { + left: 0.875rem; +} + +.-top-0 { + top: 0px; +} + +.-right-0 { + right: 0px; +} + +.-bottom-0 { + bottom: 0px; +} + +.-left-0 { + left: 0px; +} + +.-top-1 { + top: -0.25rem; +} + +.-right-1 { + right: -0.25rem; +} + +.-bottom-1 { + bottom: -0.25rem; +} + +.-left-1 { + left: -0.25rem; +} + +.-top-2 { + top: -0.5rem; +} + +.-right-2 { + right: -0.5rem; +} + +.-bottom-2 { + bottom: -0.5rem; +} + +.-left-2 { + left: -0.5rem; +} + +.-top-3 { + top: -0.75rem; +} + +.-right-3 { + right: -0.75rem; +} + +.-bottom-3 { + bottom: -0.75rem; +} + +.-left-3 { + left: -0.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-14 { + top: -3.5rem; +} + +.-right-14 { + right: -3.5rem; +} + +.-bottom-14 { + bottom: -3.5rem; +} + +.-left-14 { + left: -3.5rem; +} + +.-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-px { + top: -1px; +} + +.-right-px { + right: -1px; +} + +.-bottom-px { + bottom: -1px; +} + +.-left-px { + left: -1px; +} + +.-top-0\.5 { + top: -0.125rem; +} + +.-right-0\.5 { + right: -0.125rem; +} + +.-bottom-0\.5 { + bottom: -0.125rem; +} + +.-left-0\.5 { + left: -0.125rem; +} + +.-top-1\.5 { + top: -0.375rem; +} + +.-right-1\.5 { + right: -0.375rem; +} + +.-bottom-1\.5 { + bottom: -0.375rem; +} + +.-left-1\.5 { + left: -0.375rem; +} + +.-top-2\.5 { + top: -0.625rem; +} + +.-right-2\.5 { + right: -0.625rem; +} + +.-bottom-2\.5 { + bottom: -0.625rem; +} + +.-left-2\.5 { + left: -0.625rem; +} + +.-top-3\.5 { + top: -0.875rem; +} + +.-right-3\.5 { + right: -0.875rem; +} + +.-bottom-3\.5 { + bottom: -0.875rem; +} + +.-left-3\.5 { + left: -0.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-full { + top: 100%; +} + +.right-full { + right: 100%; +} + +.bottom-full { + bottom: 100%; +} + +.left-full { + left: 100%; +} + +.-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-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; +} + +* { + --tw-shadow: 0 0 #0000; +} + +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; +} + +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-inset { + --tw-ring-inset: inset; +} + +.focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; +} + +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-inset:focus { + --tw-ring-inset: inset; +} + +.ring-offset-current { + --tw-ring-offset-color: currentColor; +} + +.ring-offset-transparent { + --tw-ring-offset-color: transparent; +} + +.ring-offset-black { + --tw-ring-offset-color: #000; +} + +.ring-offset-white { + --tw-ring-offset-color: #fff; +} + +.ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; +} + +.ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; +} + +.ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; +} + +.ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; +} + +.ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; +} + +.ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; +} + +.ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; +} + +.ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; +} + +.ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; +} + +.ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; +} + +.ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; +} + +.ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; +} + +.ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; +} + +.ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; +} + +.ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; +} + +.ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; +} + +.ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; +} + +.ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; +} + +.ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; +} + +.ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; +} + +.ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; +} + +.ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; +} + +.ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; +} + +.ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; +} + +.ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; +} + +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; +} + +.ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; +} + +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; +} + +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; +} + +.ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; +} + +.ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; +} + +.ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; +} + +.ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; +} + +.ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; +} + +.ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; +} + +.ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; +} + +.ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; +} + +.ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; +} + +.ring-offset-violet-800 { + --tw-ring-offset-color: #653394; +} + +.ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; +} + +.ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; +} + +.ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; +} + +.ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; +} + +.ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; +} + +.ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; +} + +.ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; +} + +.ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; +} + +.ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; +} + +.ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; +} + +.ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; +} + +.ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; +} + +.ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; +} + +.ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; +} + +.ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; +} + +.ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; +} + +.ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; +} + +.ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; +} + +.ring-offset-red-700 { + --tw-ring-offset-color: #B34333; +} + +.ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; +} + +.ring-offset-red-900 { + --tw-ring-offset-color: #752C21; +} + +.ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; +} + +.ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; +} + +.ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; +} + +.ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; +} + +.ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; +} + +.ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; +} + +.ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; +} + +.ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; +} + +.ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; +} + +.ring-offset-green-900 { + --tw-ring-offset-color: #156633; +} + +.ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; +} + +.ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; +} + +.ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; +} + +.ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; +} + +.ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; +} + +.ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; +} + +.ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; +} + +.ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; +} + +.ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; +} + +.ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; +} + +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; +} + +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; +} + +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; +} + +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; +} + +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; +} + +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; +} + +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; +} + +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151; +} + +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; +} + +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827; +} + +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; +} + +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; +} + +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; +} + +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; +} + +.focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; +} + +.focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; +} + +.focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; +} + +.focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; +} + +.focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; +} + +.focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; +} + +.focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; +} + +.focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; +} + +.focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; +} + +.focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; +} + +.focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; +} + +.focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; +} + +.focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; +} + +.focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; +} + +.focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; +} + +.focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; +} + +.focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; +} + +.focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; +} + +.focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; +} + +.focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; +} + +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; +} + +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; +} + +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; +} + +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; +} + +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; +} + +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; +} + +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; +} + +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; +} + +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; +} + +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; +} + +.focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; +} + +.focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; +} + +.focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; +} + +.focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; +} + +.focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; +} + +.focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; +} + +.focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; +} + +.focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; +} + +.focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; +} + +.focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; +} + +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; +} + +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; +} + +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; +} + +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; +} + +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; +} + +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; +} + +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; +} + +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; +} + +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; +} + +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; +} + +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; +} + +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; +} + +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; +} + +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; +} + +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; +} + +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; +} + +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; +} + +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; +} + +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; +} + +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; +} + +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; +} + +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; +} + +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; +} + +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; +} + +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; +} + +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; +} + +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; +} + +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; +} + +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; +} + +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; +} + +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; +} + +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; +} + +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; +} + +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; +} + +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; +} + +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; +} + +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; +} + +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; +} + +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; +} + +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; +} + +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; +} + +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; +} + +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; +} + +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; +} + +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; +} + +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; +} + +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; +} + +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; +} + +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; +} + +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; +} + +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; +} + +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; +} + +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; +} + +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; +} + +.focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; +} + +.focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; +} + +.focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; +} + +.focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; +} + +.focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; +} + +.focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; +} + +.focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; +} + +.focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; +} + +.focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; +} + +.focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; +} + +.focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; +} + +.focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; +} + +.focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; +} + +.focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; +} + +.focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; +} + +.focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; +} + +.focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; +} + +.focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; +} + +.focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; +} + +.focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; +} + +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; +} + +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; +} + +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; +} + +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; +} + +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; +} + +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; +} + +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; +} + +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; +} + +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; +} + +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; +} + +.focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; +} + +.focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; +} + +.focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; +} + +.focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; +} + +.focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; +} + +.focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; +} + +.focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; +} + +.focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; +} + +.focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; +} + +.focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; +} + +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; +} + +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; +} + +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; +} + +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; +} + +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; +} + +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; +} + +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; +} + +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; +} + +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; +} + +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; +} + +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; +} + +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; +} + +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; +} + +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; +} + +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; +} + +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; +} + +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; +} + +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; +} + +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; +} + +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; +} + +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; +} + +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; +} + +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; +} + +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; +} + +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; +} + +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; +} + +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; +} + +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; +} + +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; +} + +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; +} + +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; +} + +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; +} + +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; +} + +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; +} + +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; +} + +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; +} + +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; +} + +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; +} + +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; +} + +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; +} + +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; +} + +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; +} + +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; +} + +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; +} + +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; +} + +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; +} + +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; +} + +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; +} + +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; +} + +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; +} + +.ring-offset-0 { + --tw-ring-offset-width: 0px; +} + +.ring-offset-1 { + --tw-ring-offset-width: 1px; +} + +.ring-offset-2 { + --tw-ring-offset-width: 2px; +} + +.ring-offset-4 { + --tw-ring-offset-width: 4px; +} + +.ring-offset-8 { + --tw-ring-offset-width: 8px; +} + +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; +} + +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; +} + +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; +} + +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; +} + +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; +} + +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; +} + +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; +} + +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; +} + +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; +} + +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; +} + +.ring-current { + --tw-ring-color: currentColor; +} + +.ring-transparent { + --tw-ring-color: transparent; +} + +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); +} + +.ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); +} + +.ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); +} + +.ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); +} + +.ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); +} + +.ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); +} + +.ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); +} + +.ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); +} + +.ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); +} + +.ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); +} + +.ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); +} + +.ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); +} + +.ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); +} + +.ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); +} + +.ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); +} + +.ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); +} + +.ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); +} + +.ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); +} + +.ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); +} + +.ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); +} + +.ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); +} + +.ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); +} + +.ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); +} + +.ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); +} + +.ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); +} + +.ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); +} + +.ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); +} + +.ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); +} + +.ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); +} + +.ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); +} + +.ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +} + +.ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); +} + +.ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); +} + +.ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); +} + +.ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); +} + +.ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); +} + +.ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); +} + +.ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); +} + +.ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); +} + +.ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); +} + +.ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); +} + +.ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); +} + +.ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); +} + +.ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); +} + +.ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); +} + +.ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); +} + +.ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); +} + +.ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); +} + +.ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); +} + +.ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); +} + +.ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); +} + +.ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); +} + +.ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); +} + +.ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); +} + +.ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); +} + +.ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); +} + +.ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); +} + +.ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); +} + +.ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); +} + +.ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); +} + +.ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +} + +.ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); +} + +.ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); +} + +.ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); +} + +.ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); +} + +.ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +} + +.ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +} + +.ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +} + +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +} + +.ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +} + +.ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +} + +.ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +} + +.ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +} + +.ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +} + +.ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +} + +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; +} + +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; +} + +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +} + +.focus\:ring-current:focus { + --tw-ring-color: currentColor; +} + +.focus\:ring-transparent:focus { + --tw-ring-color: transparent; +} + +.focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); +} + +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); +} + +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); +} + +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); +} + +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); +} + +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); +} + +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); +} + +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); +} + +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); +} + +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); +} + +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); +} + +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); +} + +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); +} + +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); +} + +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); +} + +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); +} + +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); +} + +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); +} + +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); +} + +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +} + +.ring-opacity-0 { + --tw-ring-opacity: 0; +} + +.ring-opacity-5 { + --tw-ring-opacity: 0.05; +} + +.ring-opacity-10 { + --tw-ring-opacity: 0.1; +} + +.ring-opacity-20 { + --tw-ring-opacity: 0.2; +} + +.ring-opacity-25 { + --tw-ring-opacity: 0.25; +} + +.ring-opacity-30 { + --tw-ring-opacity: 0.3; +} + +.ring-opacity-40 { + --tw-ring-opacity: 0.4; +} + +.ring-opacity-50 { + --tw-ring-opacity: 0.5; +} + +.ring-opacity-60 { + --tw-ring-opacity: 0.6; +} + +.ring-opacity-70 { + --tw-ring-opacity: 0.7; +} + +.ring-opacity-75 { + --tw-ring-opacity: 0.75; +} + +.ring-opacity-80 { + --tw-ring-opacity: 0.8; +} + +.ring-opacity-90 { + --tw-ring-opacity: 0.9; +} + +.ring-opacity-95 { + --tw-ring-opacity: 0.95; +} + +.ring-opacity-100 { + --tw-ring-opacity: 1; +} + +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; +} + +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; +} + +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; +} + +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; +} + +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; +} + +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; +} + +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; +} + +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; +} + +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; +} + +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; +} + +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; +} + +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; +} + +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; +} + +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; +} + +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; +} + +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; +} + +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; +} + +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; +} + +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; +} + +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; +} + +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; +} + +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; +} + +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; +} + +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; +} + +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; +} + +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; +} + +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; +} + +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; +} + +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; +} + +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; +} + +.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-current { + color: currentColor; +} + +.text-transparent { + color: transparent; +} + +.text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-current { + color: currentColor; +} + +.group:hover .group-hover\:text-transparent { + color: transparent; +} + +.group:hover .group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus-within\:text-current:focus-within { + color: currentColor; +} + +.focus-within\:text-transparent:focus-within { + color: transparent; +} + +.focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.hover\:text-current:hover { + color: currentColor; +} + +.hover\:text-transparent:hover { + color: transparent; +} + +.hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus\:text-current:focus { + color: currentColor; +} + +.focus\:text-transparent:focus { + color: transparent; +} + +.focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.text-opacity-0 { + --tw-text-opacity: 0; +} + +.text-opacity-5 { + --tw-text-opacity: 0.05; +} + +.text-opacity-10 { + --tw-text-opacity: 0.1; +} + +.text-opacity-20 { + --tw-text-opacity: 0.2; +} + +.text-opacity-25 { + --tw-text-opacity: 0.25; +} + +.text-opacity-30 { + --tw-text-opacity: 0.3; +} + +.text-opacity-40 { + --tw-text-opacity: 0.4; +} + +.text-opacity-50 { + --tw-text-opacity: 0.5; +} + +.text-opacity-60 { + --tw-text-opacity: 0.6; +} + +.text-opacity-70 { + --tw-text-opacity: 0.7; +} + +.text-opacity-75 { + --tw-text-opacity: 0.75; +} + +.text-opacity-80 { + --tw-text-opacity: 0.8; +} + +.text-opacity-90 { + --tw-text-opacity: 0.9; +} + +.text-opacity-95 { + --tw-text-opacity: 0.95; +} + +.text-opacity-100 { + --tw-text-opacity: 1; +} + +.group:hover .group-hover\:text-opacity-0 { + --tw-text-opacity: 0; +} + +.group:hover .group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; +} + +.group:hover .group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; +} + +.group:hover .group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; +} + +.group:hover .group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; +} + +.group:hover .group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; +} + +.group:hover .group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; +} + +.group:hover .group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; +} + +.group:hover .group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; +} + +.group:hover .group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; +} + +.group:hover .group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; +} + +.group:hover .group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; +} + +.group:hover .group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; +} + +.group:hover .group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; +} + +.group:hover .group-hover\:text-opacity-100 { + --tw-text-opacity: 1; +} + +.focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; +} + +.focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; +} + +.focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; +} + +.focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; +} + +.focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; +} + +.focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; +} + +.focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; +} + +.focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; +} + +.focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; +} + +.focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; +} + +.focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; +} + +.focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; +} + +.focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; +} + +.focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; +} + +.focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; +} + +.hover\:text-opacity-0:hover { + --tw-text-opacity: 0; +} + +.hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; +} + +.hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; +} + +.hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; +} + +.hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; +} + +.hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; +} + +.hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; +} + +.hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; +} + +.hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; +} + +.hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; +} + +.hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; +} + +.hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; +} + +.hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; +} + +.hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; +} + +.hover\:text-opacity-100:hover { + --tw-text-opacity: 1; +} + +.focus\:text-opacity-0:focus { + --tw-text-opacity: 0; +} + +.focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; +} + +.focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; +} + +.focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; +} + +.focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; +} + +.focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; +} + +.focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; +} + +.focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; +} + +.focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; +} + +.focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; +} + +.focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; +} + +.focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; +} + +.focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; +} + +.focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; +} + +.focus\:text-opacity-100:focus { + --tw-text-opacity: 1; +} + +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.overflow-ellipsis { + text-overflow: ellipsis; +} + +.overflow-clip { + text-overflow: clip; +} + +.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; +} + +.focus-within\:underline:focus-within { + text-decoration: underline; +} + +.focus-within\:line-through:focus-within { + text-decoration: line-through; +} + +.focus-within\:no-underline:focus-within { + 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; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} + +.normal-nums { + font-variant-numeric: normal; +} + +.ordinal { + --tw-ordinal: ordinal; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero; +} + +.lining-nums { + --tw-numeric-figure: lining-nums; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions; +} + +.tracking-tighter { + letter-spacing: -0.02em; +} + +.tracking-tight { + letter-spacing: -1px; +} + +.tracking-normal { + letter-spacing: 0em; +} + +.tracking-wide { + letter-spacing: 0.03em; +} + +.tracking-wider { + letter-spacing: 0.08em; +} + +.tracking-widest { + letter-spacing: 0.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-nowrap { + 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; +} + +.w-0 { + width: 0px; +} + +.w-1 { + width: 0.25rem; +} + +.w-2 { + width: 0.5rem; +} + +.w-3 { + width: 0.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-14 { + width: 3.5rem; +} + +.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: 0.125rem; +} + +.w-1\.5 { + width: 0.375rem; +} + +.w-2\.5 { + width: 0.625rem; +} + +.w-3\.5 { + width: 0.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; +} + +.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 { + gap: 0px; +} + +.gap-1 { + gap: 0.25rem; +} + +.gap-2 { + gap: 0.5rem; +} + +.gap-3 { + gap: 0.75rem; +} + +.gap-4 { + gap: 1rem; +} + +.gap-5 { + gap: 1.25rem; +} + +.gap-6 { + gap: 1.5rem; +} + +.gap-7 { + gap: 1.75rem; +} + +.gap-8 { + gap: 2rem; +} + +.gap-9 { + gap: 2.25rem; +} + +.gap-10 { + gap: 2.5rem; +} + +.gap-11 { + gap: 2.75rem; +} + +.gap-12 { + gap: 3rem; +} + +.gap-14 { + gap: 3.5rem; +} + +.gap-16 { + gap: 4rem; +} + +.gap-20 { + gap: 5rem; +} + +.gap-24 { + gap: 6rem; +} + +.gap-28 { + gap: 7rem; +} + +.gap-32 { + gap: 8rem; +} + +.gap-36 { + gap: 9rem; +} + +.gap-40 { + gap: 10rem; +} + +.gap-44 { + gap: 11rem; +} + +.gap-48 { + gap: 12rem; +} + +.gap-52 { + gap: 13rem; +} + +.gap-56 { + gap: 14rem; +} + +.gap-60 { + gap: 15rem; +} + +.gap-64 { + gap: 16rem; +} + +.gap-72 { + gap: 18rem; +} + +.gap-80 { + gap: 20rem; +} + +.gap-96 { + gap: 24rem; +} + +.gap-px { + gap: 1px; +} + +.gap-0\.5 { + gap: 0.125rem; +} + +.gap-1\.5 { + gap: 0.375rem; +} + +.gap-2\.5 { + gap: 0.625rem; +} + +.gap-3\.5 { + gap: 0.875rem; +} + +.gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; +} + +.gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; +} + +.gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; +} + +.gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; +} + +.gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} + +.gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; +} + +.gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; +} + +.gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; +} + +.gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; +} + +.gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; +} + +.gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; +} + +.gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; +} + +.gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; +} + +.gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; +} + +.gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; +} + +.gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; +} + +.gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; +} + +.gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; +} + +.gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; +} + +.gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; +} + +.gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; +} + +.gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; +} + +.gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; +} + +.gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; +} + +.gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; +} + +.gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; +} + +.gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; +} + +.gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; +} + +.gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; +} + +.gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; +} + +.gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; +} + +.gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; +} + +.gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; +} + +.gap-y-0 { + row-gap: 0px; +} + +.gap-y-1 { + row-gap: 0.25rem; +} + +.gap-y-2 { + row-gap: 0.5rem; +} + +.gap-y-3 { + row-gap: 0.75rem; +} + +.gap-y-4 { + row-gap: 1rem; +} + +.gap-y-5 { + row-gap: 1.25rem; +} + +.gap-y-6 { + row-gap: 1.5rem; +} + +.gap-y-7 { + row-gap: 1.75rem; +} + +.gap-y-8 { + row-gap: 2rem; +} + +.gap-y-9 { + row-gap: 2.25rem; +} + +.gap-y-10 { + row-gap: 2.5rem; +} + +.gap-y-11 { + row-gap: 2.75rem; +} + +.gap-y-12 { + row-gap: 3rem; +} + +.gap-y-14 { + row-gap: 3.5rem; +} + +.gap-y-16 { + row-gap: 4rem; +} + +.gap-y-20 { + row-gap: 5rem; +} + +.gap-y-24 { + row-gap: 6rem; +} + +.gap-y-28 { + row-gap: 7rem; +} + +.gap-y-32 { + row-gap: 8rem; +} + +.gap-y-36 { + row-gap: 9rem; +} + +.gap-y-40 { + row-gap: 10rem; +} + +.gap-y-44 { + row-gap: 11rem; +} + +.gap-y-48 { + row-gap: 12rem; +} + +.gap-y-52 { + row-gap: 13rem; +} + +.gap-y-56 { + row-gap: 14rem; +} + +.gap-y-60 { + row-gap: 15rem; +} + +.gap-y-64 { + row-gap: 16rem; +} + +.gap-y-72 { + row-gap: 18rem; +} + +.gap-y-80 { + row-gap: 20rem; +} + +.gap-y-96 { + row-gap: 24rem; +} + +.gap-y-px { + row-gap: 1px; +} + +.gap-y-0\.5 { + row-gap: 0.125rem; +} + +.gap-y-1\.5 { + row-gap: 0.375rem; +} + +.gap-y-2\.5 { + row-gap: 0.625rem; +} + +.gap-y-3\.5 { + row-gap: 0.875rem; +} + +.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; +} + +.auto-cols-auto { + grid-auto-columns: auto; +} + +.auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; +} + +.auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; +} + +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); +} + +.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-span-full { + grid-column: 1 / -1; +} + +.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; +} + +.auto-rows-auto { + grid-auto-rows: auto; +} + +.auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; +} + +.auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; +} + +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); +} + +.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-span-full { + grid-row: 1 / -1; +} + +.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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.scale-x-0 { + --tw-scale-x: 0; +} + +.scale-x-50 { + --tw-scale-x: .5; +} + +.scale-x-75 { + --tw-scale-x: .75; +} + +.scale-x-90 { + --tw-scale-x: .9; +} + +.scale-x-95 { + --tw-scale-x: .95; +} + +.scale-x-100 { + --tw-scale-x: 1; +} + +.scale-x-105 { + --tw-scale-x: 1.05; +} + +.scale-x-110 { + --tw-scale-x: 1.1; +} + +.scale-x-125 { + --tw-scale-x: 1.25; +} + +.scale-x-150 { + --tw-scale-x: 1.5; +} + +.scale-y-0 { + --tw-scale-y: 0; +} + +.scale-y-50 { + --tw-scale-y: .5; +} + +.scale-y-75 { + --tw-scale-y: .75; +} + +.scale-y-90 { + --tw-scale-y: .9; +} + +.scale-y-95 { + --tw-scale-y: .95; +} + +.scale-y-100 { + --tw-scale-y: 1; +} + +.scale-y-105 { + --tw-scale-y: 1.05; +} + +.scale-y-110 { + --tw-scale-y: 1.1; +} + +.scale-y-125 { + --tw-scale-y: 1.25; +} + +.scale-y-150 { + --tw-scale-y: 1.5; +} + +.hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.hover\:scale-x-0:hover { + --tw-scale-x: 0; +} + +.hover\:scale-x-50:hover { + --tw-scale-x: .5; +} + +.hover\:scale-x-75:hover { + --tw-scale-x: .75; +} + +.hover\:scale-x-90:hover { + --tw-scale-x: .9; +} + +.hover\:scale-x-95:hover { + --tw-scale-x: .95; +} + +.hover\:scale-x-100:hover { + --tw-scale-x: 1; +} + +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05; +} + +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1; +} + +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25; +} + +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5; +} + +.hover\:scale-y-0:hover { + --tw-scale-y: 0; +} + +.hover\:scale-y-50:hover { + --tw-scale-y: .5; +} + +.hover\:scale-y-75:hover { + --tw-scale-y: .75; +} + +.hover\:scale-y-90:hover { + --tw-scale-y: .9; +} + +.hover\:scale-y-95:hover { + --tw-scale-y: .95; +} + +.hover\:scale-y-100:hover { + --tw-scale-y: 1; +} + +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05; +} + +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1; +} + +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25; +} + +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5; +} + +.focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.focus\:scale-x-0:focus { + --tw-scale-x: 0; +} + +.focus\:scale-x-50:focus { + --tw-scale-x: .5; +} + +.focus\:scale-x-75:focus { + --tw-scale-x: .75; +} + +.focus\:scale-x-90:focus { + --tw-scale-x: .9; +} + +.focus\:scale-x-95:focus { + --tw-scale-x: .95; +} + +.focus\:scale-x-100:focus { + --tw-scale-x: 1; +} + +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05; +} + +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1; +} + +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25; +} + +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5; +} + +.focus\:scale-y-0:focus { + --tw-scale-y: 0; +} + +.focus\:scale-y-50:focus { + --tw-scale-y: .5; +} + +.focus\:scale-y-75:focus { + --tw-scale-y: .75; +} + +.focus\:scale-y-90:focus { + --tw-scale-y: .9; +} + +.focus\:scale-y-95:focus { + --tw-scale-y: .95; +} + +.focus\:scale-y-100:focus { + --tw-scale-y: 1; +} + +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05; +} + +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1; +} + +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25; +} + +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5; +} + +.rotate-0 { + --tw-rotate: 0deg; +} + +.rotate-1 { + --tw-rotate: 1deg; +} + +.rotate-2 { + --tw-rotate: 2deg; +} + +.rotate-3 { + --tw-rotate: 3deg; +} + +.rotate-6 { + --tw-rotate: 6deg; +} + +.rotate-12 { + --tw-rotate: 12deg; +} + +.rotate-45 { + --tw-rotate: 45deg; +} + +.rotate-90 { + --tw-rotate: 90deg; +} + +.rotate-180 { + --tw-rotate: 180deg; +} + +.-rotate-180 { + --tw-rotate: -180deg; +} + +.-rotate-90 { + --tw-rotate: -90deg; +} + +.-rotate-45 { + --tw-rotate: -45deg; +} + +.-rotate-12 { + --tw-rotate: -12deg; +} + +.-rotate-6 { + --tw-rotate: -6deg; +} + +.-rotate-3 { + --tw-rotate: -3deg; +} + +.-rotate-2 { + --tw-rotate: -2deg; +} + +.-rotate-1 { + --tw-rotate: -1deg; +} + +.hover\:rotate-0:hover { + --tw-rotate: 0deg; +} + +.hover\:rotate-1:hover { + --tw-rotate: 1deg; +} + +.hover\:rotate-2:hover { + --tw-rotate: 2deg; +} + +.hover\:rotate-3:hover { + --tw-rotate: 3deg; +} + +.hover\:rotate-6:hover { + --tw-rotate: 6deg; +} + +.hover\:rotate-12:hover { + --tw-rotate: 12deg; +} + +.hover\:rotate-45:hover { + --tw-rotate: 45deg; +} + +.hover\:rotate-90:hover { + --tw-rotate: 90deg; +} + +.hover\:rotate-180:hover { + --tw-rotate: 180deg; +} + +.hover\:-rotate-180:hover { + --tw-rotate: -180deg; +} + +.hover\:-rotate-90:hover { + --tw-rotate: -90deg; +} + +.hover\:-rotate-45:hover { + --tw-rotate: -45deg; +} + +.hover\:-rotate-12:hover { + --tw-rotate: -12deg; +} + +.hover\:-rotate-6:hover { + --tw-rotate: -6deg; +} + +.hover\:-rotate-3:hover { + --tw-rotate: -3deg; +} + +.hover\:-rotate-2:hover { + --tw-rotate: -2deg; +} + +.hover\:-rotate-1:hover { + --tw-rotate: -1deg; +} + +.focus\:rotate-0:focus { + --tw-rotate: 0deg; +} + +.focus\:rotate-1:focus { + --tw-rotate: 1deg; +} + +.focus\:rotate-2:focus { + --tw-rotate: 2deg; +} + +.focus\:rotate-3:focus { + --tw-rotate: 3deg; +} + +.focus\:rotate-6:focus { + --tw-rotate: 6deg; +} + +.focus\:rotate-12:focus { + --tw-rotate: 12deg; +} + +.focus\:rotate-45:focus { + --tw-rotate: 45deg; +} + +.focus\:rotate-90:focus { + --tw-rotate: 90deg; +} + +.focus\:rotate-180:focus { + --tw-rotate: 180deg; +} + +.focus\:-rotate-180:focus { + --tw-rotate: -180deg; +} + +.focus\:-rotate-90:focus { + --tw-rotate: -90deg; +} + +.focus\:-rotate-45:focus { + --tw-rotate: -45deg; +} + +.focus\:-rotate-12:focus { + --tw-rotate: -12deg; +} + +.focus\:-rotate-6:focus { + --tw-rotate: -6deg; +} + +.focus\:-rotate-3:focus { + --tw-rotate: -3deg; +} + +.focus\:-rotate-2:focus { + --tw-rotate: -2deg; +} + +.focus\:-rotate-1:focus { + --tw-rotate: -1deg; +} + +.translate-x-0 { + --tw-translate-x: 0px; +} + +.translate-x-1 { + --tw-translate-x: 0.25rem; +} + +.translate-x-2 { + --tw-translate-x: 0.5rem; +} + +.translate-x-3 { + --tw-translate-x: 0.75rem; +} + +.translate-x-4 { + --tw-translate-x: 1rem; +} + +.translate-x-5 { + --tw-translate-x: 1.25rem; +} + +.translate-x-6 { + --tw-translate-x: 1.5rem; +} + +.translate-x-7 { + --tw-translate-x: 1.75rem; +} + +.translate-x-8 { + --tw-translate-x: 2rem; +} + +.translate-x-9 { + --tw-translate-x: 2.25rem; +} + +.translate-x-10 { + --tw-translate-x: 2.5rem; +} + +.translate-x-11 { + --tw-translate-x: 2.75rem; +} + +.translate-x-12 { + --tw-translate-x: 3rem; +} + +.translate-x-14 { + --tw-translate-x: 3.5rem; +} + +.translate-x-16 { + --tw-translate-x: 4rem; +} + +.translate-x-20 { + --tw-translate-x: 5rem; +} + +.translate-x-24 { + --tw-translate-x: 6rem; +} + +.translate-x-28 { + --tw-translate-x: 7rem; +} + +.translate-x-32 { + --tw-translate-x: 8rem; +} + +.translate-x-36 { + --tw-translate-x: 9rem; +} + +.translate-x-40 { + --tw-translate-x: 10rem; +} + +.translate-x-44 { + --tw-translate-x: 11rem; +} + +.translate-x-48 { + --tw-translate-x: 12rem; +} + +.translate-x-52 { + --tw-translate-x: 13rem; +} + +.translate-x-56 { + --tw-translate-x: 14rem; +} + +.translate-x-60 { + --tw-translate-x: 15rem; +} + +.translate-x-64 { + --tw-translate-x: 16rem; +} + +.translate-x-72 { + --tw-translate-x: 18rem; +} + +.translate-x-80 { + --tw-translate-x: 20rem; +} + +.translate-x-96 { + --tw-translate-x: 24rem; +} + +.translate-x-px { + --tw-translate-x: 1px; +} + +.translate-x-0\.5 { + --tw-translate-x: 0.125rem; +} + +.translate-x-1\.5 { + --tw-translate-x: 0.375rem; +} + +.translate-x-2\.5 { + --tw-translate-x: 0.625rem; +} + +.translate-x-3\.5 { + --tw-translate-x: 0.875rem; +} + +.-translate-x-0 { + --tw-translate-x: 0px; +} + +.-translate-x-1 { + --tw-translate-x: -0.25rem; +} + +.-translate-x-2 { + --tw-translate-x: -0.5rem; +} + +.-translate-x-3 { + --tw-translate-x: -0.75rem; +} + +.-translate-x-4 { + --tw-translate-x: -1rem; +} + +.-translate-x-5 { + --tw-translate-x: -1.25rem; +} + +.-translate-x-6 { + --tw-translate-x: -1.5rem; +} + +.-translate-x-7 { + --tw-translate-x: -1.75rem; +} + +.-translate-x-8 { + --tw-translate-x: -2rem; +} + +.-translate-x-9 { + --tw-translate-x: -2.25rem; +} + +.-translate-x-10 { + --tw-translate-x: -2.5rem; +} + +.-translate-x-11 { + --tw-translate-x: -2.75rem; +} + +.-translate-x-12 { + --tw-translate-x: -3rem; +} + +.-translate-x-14 { + --tw-translate-x: -3.5rem; +} + +.-translate-x-16 { + --tw-translate-x: -4rem; +} + +.-translate-x-20 { + --tw-translate-x: -5rem; +} + +.-translate-x-24 { + --tw-translate-x: -6rem; +} + +.-translate-x-28 { + --tw-translate-x: -7rem; +} + +.-translate-x-32 { + --tw-translate-x: -8rem; +} + +.-translate-x-36 { + --tw-translate-x: -9rem; +} + +.-translate-x-40 { + --tw-translate-x: -10rem; +} + +.-translate-x-44 { + --tw-translate-x: -11rem; +} + +.-translate-x-48 { + --tw-translate-x: -12rem; +} + +.-translate-x-52 { + --tw-translate-x: -13rem; +} + +.-translate-x-56 { + --tw-translate-x: -14rem; +} + +.-translate-x-60 { + --tw-translate-x: -15rem; +} + +.-translate-x-64 { + --tw-translate-x: -16rem; +} + +.-translate-x-72 { + --tw-translate-x: -18rem; +} + +.-translate-x-80 { + --tw-translate-x: -20rem; +} + +.-translate-x-96 { + --tw-translate-x: -24rem; +} + +.-translate-x-px { + --tw-translate-x: -1px; +} + +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem; +} + +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem; +} + +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem; +} + +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem; +} + +.translate-x-1\/2 { + --tw-translate-x: 50%; +} + +.translate-x-1\/3 { + --tw-translate-x: 33.333333%; +} + +.translate-x-2\/3 { + --tw-translate-x: 66.666667%; +} + +.translate-x-1\/4 { + --tw-translate-x: 25%; +} + +.translate-x-2\/4 { + --tw-translate-x: 50%; +} + +.translate-x-3\/4 { + --tw-translate-x: 75%; +} + +.translate-x-full { + --tw-translate-x: 100%; +} + +.-translate-x-1\/2 { + --tw-translate-x: -50%; +} + +.-translate-x-1\/3 { + --tw-translate-x: -33.333333%; +} + +.-translate-x-2\/3 { + --tw-translate-x: -66.666667%; +} + +.-translate-x-1\/4 { + --tw-translate-x: -25%; +} + +.-translate-x-2\/4 { + --tw-translate-x: -50%; +} + +.-translate-x-3\/4 { + --tw-translate-x: -75%; +} + +.-translate-x-full { + --tw-translate-x: -100%; +} + +.translate-y-0 { + --tw-translate-y: 0px; +} + +.translate-y-1 { + --tw-translate-y: 0.25rem; +} + +.translate-y-2 { + --tw-translate-y: 0.5rem; +} + +.translate-y-3 { + --tw-translate-y: 0.75rem; +} + +.translate-y-4 { + --tw-translate-y: 1rem; +} + +.translate-y-5 { + --tw-translate-y: 1.25rem; +} + +.translate-y-6 { + --tw-translate-y: 1.5rem; +} + +.translate-y-7 { + --tw-translate-y: 1.75rem; +} + +.translate-y-8 { + --tw-translate-y: 2rem; +} + +.translate-y-9 { + --tw-translate-y: 2.25rem; +} + +.translate-y-10 { + --tw-translate-y: 2.5rem; +} + +.translate-y-11 { + --tw-translate-y: 2.75rem; +} + +.translate-y-12 { + --tw-translate-y: 3rem; +} + +.translate-y-14 { + --tw-translate-y: 3.5rem; +} + +.translate-y-16 { + --tw-translate-y: 4rem; +} + +.translate-y-20 { + --tw-translate-y: 5rem; +} + +.translate-y-24 { + --tw-translate-y: 6rem; +} + +.translate-y-28 { + --tw-translate-y: 7rem; +} + +.translate-y-32 { + --tw-translate-y: 8rem; +} + +.translate-y-36 { + --tw-translate-y: 9rem; +} + +.translate-y-40 { + --tw-translate-y: 10rem; +} + +.translate-y-44 { + --tw-translate-y: 11rem; +} + +.translate-y-48 { + --tw-translate-y: 12rem; +} + +.translate-y-52 { + --tw-translate-y: 13rem; +} + +.translate-y-56 { + --tw-translate-y: 14rem; +} + +.translate-y-60 { + --tw-translate-y: 15rem; +} + +.translate-y-64 { + --tw-translate-y: 16rem; +} + +.translate-y-72 { + --tw-translate-y: 18rem; +} + +.translate-y-80 { + --tw-translate-y: 20rem; +} + +.translate-y-96 { + --tw-translate-y: 24rem; +} + +.translate-y-px { + --tw-translate-y: 1px; +} + +.translate-y-0\.5 { + --tw-translate-y: 0.125rem; +} + +.translate-y-1\.5 { + --tw-translate-y: 0.375rem; +} + +.translate-y-2\.5 { + --tw-translate-y: 0.625rem; +} + +.translate-y-3\.5 { + --tw-translate-y: 0.875rem; +} + +.-translate-y-0 { + --tw-translate-y: 0px; +} + +.-translate-y-1 { + --tw-translate-y: -0.25rem; +} + +.-translate-y-2 { + --tw-translate-y: -0.5rem; +} + +.-translate-y-3 { + --tw-translate-y: -0.75rem; +} + +.-translate-y-4 { + --tw-translate-y: -1rem; +} + +.-translate-y-5 { + --tw-translate-y: -1.25rem; +} + +.-translate-y-6 { + --tw-translate-y: -1.5rem; +} + +.-translate-y-7 { + --tw-translate-y: -1.75rem; +} + +.-translate-y-8 { + --tw-translate-y: -2rem; +} + +.-translate-y-9 { + --tw-translate-y: -2.25rem; +} + +.-translate-y-10 { + --tw-translate-y: -2.5rem; +} + +.-translate-y-11 { + --tw-translate-y: -2.75rem; +} + +.-translate-y-12 { + --tw-translate-y: -3rem; +} + +.-translate-y-14 { + --tw-translate-y: -3.5rem; +} + +.-translate-y-16 { + --tw-translate-y: -4rem; +} + +.-translate-y-20 { + --tw-translate-y: -5rem; +} + +.-translate-y-24 { + --tw-translate-y: -6rem; +} + +.-translate-y-28 { + --tw-translate-y: -7rem; +} + +.-translate-y-32 { + --tw-translate-y: -8rem; +} + +.-translate-y-36 { + --tw-translate-y: -9rem; +} + +.-translate-y-40 { + --tw-translate-y: -10rem; +} + +.-translate-y-44 { + --tw-translate-y: -11rem; +} + +.-translate-y-48 { + --tw-translate-y: -12rem; +} + +.-translate-y-52 { + --tw-translate-y: -13rem; +} + +.-translate-y-56 { + --tw-translate-y: -14rem; +} + +.-translate-y-60 { + --tw-translate-y: -15rem; +} + +.-translate-y-64 { + --tw-translate-y: -16rem; +} + +.-translate-y-72 { + --tw-translate-y: -18rem; +} + +.-translate-y-80 { + --tw-translate-y: -20rem; +} + +.-translate-y-96 { + --tw-translate-y: -24rem; +} + +.-translate-y-px { + --tw-translate-y: -1px; +} + +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem; +} + +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem; +} + +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem; +} + +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem; +} + +.translate-y-1\/2 { + --tw-translate-y: 50%; +} + +.translate-y-1\/3 { + --tw-translate-y: 33.333333%; +} + +.translate-y-2\/3 { + --tw-translate-y: 66.666667%; +} + +.translate-y-1\/4 { + --tw-translate-y: 25%; +} + +.translate-y-2\/4 { + --tw-translate-y: 50%; +} + +.translate-y-3\/4 { + --tw-translate-y: 75%; +} + +.translate-y-full { + --tw-translate-y: 100%; +} + +.-translate-y-1\/2 { + --tw-translate-y: -50%; +} + +.-translate-y-1\/3 { + --tw-translate-y: -33.333333%; +} + +.-translate-y-2\/3 { + --tw-translate-y: -66.666667%; +} + +.-translate-y-1\/4 { + --tw-translate-y: -25%; +} + +.-translate-y-2\/4 { + --tw-translate-y: -50%; +} + +.-translate-y-3\/4 { + --tw-translate-y: -75%; +} + +.-translate-y-full { + --tw-translate-y: -100%; +} + +.hover\:translate-x-0:hover { + --tw-translate-x: 0px; +} + +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; +} + +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; +} + +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; +} + +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem; +} + +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; +} + +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; +} + +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; +} + +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem; +} + +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; +} + +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; +} + +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; +} + +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem; +} + +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; +} + +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem; +} + +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem; +} + +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem; +} + +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem; +} + +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem; +} + +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem; +} + +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem; +} + +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem; +} + +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem; +} + +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem; +} + +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem; +} + +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem; +} + +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem; +} + +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem; +} + +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem; +} + +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem; +} + +.hover\:translate-x-px:hover { + --tw-translate-x: 1px; +} + +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; +} + +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; +} + +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; +} + +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; +} + +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px; +} + +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; +} + +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; +} + +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; +} + +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; +} + +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; +} + +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; +} + +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; +} + +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; +} + +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; +} + +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; +} + +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; +} + +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; +} + +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; +} + +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; +} + +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; +} + +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; +} + +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; +} + +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; +} + +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; +} + +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; +} + +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; +} + +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; +} + +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; +} + +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; +} + +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; +} + +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; +} + +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; +} + +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; +} + +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; +} + +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px; +} + +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; +} + +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; +} + +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; +} + +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; +} + +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; +} + +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; +} + +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; +} + +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; +} + +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; +} + +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; +} + +.hover\:translate-x-full:hover { + --tw-translate-x: 100%; +} + +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; +} + +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; +} + +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; +} + +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; +} + +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; +} + +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; +} + +.hover\:-translate-x-full:hover { + --tw-translate-x: -100%; +} + +.hover\:translate-y-0:hover { + --tw-translate-y: 0px; +} + +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; +} + +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; +} + +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; +} + +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem; +} + +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; +} + +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; +} + +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; +} + +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem; +} + +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; +} + +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; +} + +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; +} + +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem; +} + +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; +} + +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem; +} + +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem; +} + +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem; +} + +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem; +} + +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem; +} + +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem; +} + +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem; +} + +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem; +} + +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem; +} + +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem; +} + +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem; +} + +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem; +} + +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem; +} + +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem; +} + +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem; +} + +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem; +} + +.hover\:translate-y-px:hover { + --tw-translate-y: 1px; +} + +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; +} + +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; +} + +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; +} + +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; +} + +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px; +} + +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; +} + +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; +} + +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; +} + +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; +} + +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; +} + +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; +} + +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; +} + +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; +} + +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; +} + +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; +} + +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; +} + +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; +} + +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; +} + +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; +} + +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; +} + +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; +} + +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; +} + +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; +} + +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; +} + +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; +} + +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; +} + +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; +} + +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; +} + +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; +} + +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; +} + +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; +} + +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; +} + +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; +} + +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; +} + +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px; +} + +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; +} + +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; +} + +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; +} + +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; +} + +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; +} + +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; +} + +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; +} + +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; +} + +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; +} + +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; +} + +.hover\:translate-y-full:hover { + --tw-translate-y: 100%; +} + +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; +} + +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; +} + +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; +} + +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; +} + +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; +} + +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; +} + +.hover\:-translate-y-full:hover { + --tw-translate-y: -100%; +} + +.focus\:translate-x-0:focus { + --tw-translate-x: 0px; +} + +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; +} + +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; +} + +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; +} + +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem; +} + +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; +} + +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; +} + +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; +} + +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem; +} + +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; +} + +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; +} + +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; +} + +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem; +} + +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; +} + +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem; +} + +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem; +} + +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem; +} + +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem; +} + +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem; +} + +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem; +} + +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem; +} + +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem; +} + +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem; +} + +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem; +} + +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem; +} + +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem; +} + +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem; +} + +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem; +} + +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem; +} + +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem; +} + +.focus\:translate-x-px:focus { + --tw-translate-x: 1px; +} + +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; +} + +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; +} + +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; +} + +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; +} + +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px; +} + +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; +} + +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; +} + +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; +} + +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; +} + +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; +} + +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; +} + +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; +} + +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; +} + +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; +} + +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; +} + +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; +} + +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; +} + +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; +} + +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; +} + +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; +} + +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; +} + +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; +} + +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; +} + +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; +} + +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; +} + +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; +} + +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; +} + +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; +} + +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; +} + +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; +} + +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; +} + +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; +} + +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; +} + +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; +} + +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px; +} + +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; +} + +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; +} + +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; +} + +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; +} + +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; +} + +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; +} + +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; +} + +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; +} + +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; +} + +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; +} + +.focus\:translate-x-full:focus { + --tw-translate-x: 100%; +} + +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; +} + +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; +} + +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; +} + +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; +} + +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; +} + +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; +} + +.focus\:-translate-x-full:focus { + --tw-translate-x: -100%; +} + +.focus\:translate-y-0:focus { + --tw-translate-y: 0px; +} + +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; +} + +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; +} + +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; +} + +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem; +} + +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; +} + +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; +} + +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; +} + +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem; +} + +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; +} + +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; +} + +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; +} + +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem; +} + +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; +} + +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem; +} + +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem; +} + +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem; +} + +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem; +} + +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem; +} + +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem; +} + +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem; +} + +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem; +} + +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem; +} + +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem; +} + +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem; +} + +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem; +} + +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem; +} + +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem; +} + +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem; +} + +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem; +} + +.focus\:translate-y-px:focus { + --tw-translate-y: 1px; +} + +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; +} + +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; +} + +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; +} + +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; +} + +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px; +} + +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; +} + +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; +} + +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; +} + +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; +} + +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; +} + +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; +} + +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; +} + +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; +} + +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; +} + +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; +} + +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; +} + +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; +} + +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; +} + +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; +} + +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; +} + +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; +} + +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; +} + +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; +} + +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; +} + +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; +} + +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; +} + +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; +} + +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; +} + +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; +} + +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; +} + +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; +} + +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; +} + +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; +} + +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; +} + +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px; +} + +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; +} + +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; +} + +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; +} + +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; +} + +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; +} + +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; +} + +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; +} + +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; +} + +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; +} + +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; +} + +.focus\:translate-y-full:focus { + --tw-translate-y: 100%; +} + +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; +} + +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; +} + +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; +} + +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; +} + +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; +} + +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; +} + +.focus\:-translate-y-full:focus { + --tw-translate-y: -100%; +} + +.skew-x-0 { + --tw-skew-x: 0deg; +} + +.skew-x-1 { + --tw-skew-x: 1deg; +} + +.skew-x-2 { + --tw-skew-x: 2deg; +} + +.skew-x-3 { + --tw-skew-x: 3deg; +} + +.skew-x-6 { + --tw-skew-x: 6deg; +} + +.skew-x-12 { + --tw-skew-x: 12deg; +} + +.-skew-x-12 { + --tw-skew-x: -12deg; +} + +.-skew-x-6 { + --tw-skew-x: -6deg; +} + +.-skew-x-3 { + --tw-skew-x: -3deg; +} + +.-skew-x-2 { + --tw-skew-x: -2deg; +} + +.-skew-x-1 { + --tw-skew-x: -1deg; +} + +.skew-y-0 { + --tw-skew-y: 0deg; +} + +.skew-y-1 { + --tw-skew-y: 1deg; +} + +.skew-y-2 { + --tw-skew-y: 2deg; +} + +.skew-y-3 { + --tw-skew-y: 3deg; +} + +.skew-y-6 { + --tw-skew-y: 6deg; +} + +.skew-y-12 { + --tw-skew-y: 12deg; +} + +.-skew-y-12 { + --tw-skew-y: -12deg; +} + +.-skew-y-6 { + --tw-skew-y: -6deg; +} + +.-skew-y-3 { + --tw-skew-y: -3deg; +} + +.-skew-y-2 { + --tw-skew-y: -2deg; +} + +.-skew-y-1 { + --tw-skew-y: -1deg; +} + +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg; +} + +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg; +} + +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg; +} + +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg; +} + +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg; +} + +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg; +} + +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; +} + +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; +} + +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; +} + +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; +} + +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; +} + +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg; +} + +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg; +} + +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg; +} + +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg; +} + +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg; +} + +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg; +} + +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; +} + +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; +} + +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; +} + +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; +} + +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; +} + +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg; +} + +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg; +} + +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg; +} + +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg; +} + +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg; +} + +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg; +} + +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; +} + +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; +} + +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; +} + +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; +} + +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; +} + +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg; +} + +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg; +} + +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg; +} + +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg; +} + +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg; +} + +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg; +} + +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; +} + +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; +} + +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; +} + +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; +} + +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; +} + +.transition-none { + transition-property: none; +} + +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.duration-75 { + transition-duration: 75ms; +} + +.duration-100 { + transition-duration: 100ms; +} + +.duration-150 { + transition-duration: 150ms; +} + +.duration-200 { + transition-duration: 200ms; +} + +.duration-300 { + transition-duration: 300ms; +} + +.duration-500 { + transition-duration: 500ms; +} + +.duration-700 { + transition-duration: 700ms; +} + +.duration-1000 { + transition-duration: 1000ms; +} + +.delay-75 { + transition-delay: 75ms; +} + +.delay-100 { + transition-delay: 100ms; +} + +.delay-150 { + transition-delay: 150ms; +} + +.delay-200 { + transition-delay: 200ms; +} + +.delay-300 { + transition-delay: 300ms; +} + +.delay-500 { + transition-delay: 500ms; +} + +.delay-700 { + transition-delay: 700ms; +} + +.delay-1000 { + transition-delay: 1000ms; +} + +@-webkit-keyframes spin { + to { + transform: rotate(360deg); + } +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} + +@-webkit-keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } +} + +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } +} + +@-webkit-keyframes pulse { + 50% { + opacity: .5; + } +} + +@keyframes pulse { + 50% { + opacity: .5; + } +} + +@-webkit-keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none { + -webkit-animation: none; + animation: none; +} + +.animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; +} + +.animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} + +.animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +.animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; +} + +@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; + } + } + + @media (min-width: 1536px) { + .sm\:container { + max-width: 1536px; + } + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .sm\:bg-clip-padding { + background-clip: padding-box; + } + + .sm\:bg-clip-content { + background-clip: content-box; + } + + .sm\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .sm\:bg-current { + background-color: currentColor; + } + + .sm\:bg-transparent { + background-color: transparent; + } + + .sm\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .sm\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .sm\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-current:hover { + background-color: currentColor; + } + + .sm\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .sm\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-current:focus { + background-color: currentColor; + } + + .sm\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .sm\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-none { + background-image: none; + } + + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .sm\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:to-current { + --tw-gradient-to: currentColor; + } + + .sm\:to-transparent { + --tw-gradient-to: transparent; + } + + .sm\:to-black { + --tw-gradient-to: #000; + } + + .sm\:to-white { + --tw-gradient-to: #fff; + } + + .sm\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .sm\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .sm\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .sm\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .sm\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .sm\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .sm\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .sm\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .sm\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .sm\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .sm\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .sm\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .sm\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .sm\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .sm\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .sm\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .sm\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .sm\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .sm\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .sm\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .sm\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .sm\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .sm\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .sm\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .sm\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .sm\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .sm\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .sm\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .sm\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .sm\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .sm\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .sm\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .sm\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .sm\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .sm\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .sm\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .sm\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .sm\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .sm\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .sm\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .sm\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .sm\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .sm\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .sm\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .sm\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .sm\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .sm\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .sm\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .sm\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .sm\:to-green-900 { + --tw-gradient-to: #156633; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .sm\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .sm\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .sm\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .sm\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .sm\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .sm\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .sm\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .sm\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .sm\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .sm\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .sm\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .sm\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .sm\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .sm\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .sm\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .sm\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .sm\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .sm\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .sm\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .sm\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .sm\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .sm\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .sm\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .sm\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .sm\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .sm\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .sm\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .sm\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .sm\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .sm\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .sm\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .sm\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .sm\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .sm\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .sm\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .sm\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .sm\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .sm\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .sm\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .sm\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .sm\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .sm\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .sm\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .sm\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .sm\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .sm\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .sm\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .sm\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .sm\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .sm\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .sm\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .sm\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .sm\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .sm\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .sm\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .sm\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .sm\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .sm\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .sm\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .sm\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .sm\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .sm\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .sm\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .sm\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .sm\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .sm\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .sm\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .sm\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .sm\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .sm\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .sm\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .sm\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .sm\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .sm\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .sm\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .sm\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .sm\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .sm\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .sm\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .sm\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .sm\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .sm\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .sm\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .sm\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .sm\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .sm\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .sm\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .sm\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .sm\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .sm\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .sm\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .sm\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .sm\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .sm\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .sm\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .sm\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .sm\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .sm\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .sm\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .sm\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .sm\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .sm\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .sm\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .sm\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .sm\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .sm\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .sm\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .sm\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .sm\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .sm\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .sm\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .sm\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .sm\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .sm\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .sm\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .sm\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .sm\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .sm\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .sm\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .sm\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .sm\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .sm\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .sm\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .sm\:border-transparent { + border-color: transparent; + } + + .sm\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .sm\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .sm\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:hover\:border-current:hover { + border-color: currentColor; + } + + .sm\:hover\:border-transparent:hover { + border-color: transparent; + } + + .sm\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:focus\:border-current:focus { + border-color: currentColor; + } + + .sm\:focus\:border-transparent:focus { + border-color: transparent; + } + + .sm\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .sm\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .sm\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .sm\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .sm\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .sm\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .sm\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .sm\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .sm\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .sm\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .sm\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .sm\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .sm\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .sm\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .sm\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .sm\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .sm\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .sm\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .sm\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .sm\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .sm\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .sm\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .sm\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .sm\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .sm\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .sm\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .sm\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .sm\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .sm\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .sm\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .sm\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .sm\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .sm\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .sm\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .sm\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .sm\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .sm\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .sm\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .sm\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .sm\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .sm\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .sm\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .sm\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .sm\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .sm\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .sm\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .sm\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .sm\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .sm\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .sm\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .sm\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .sm\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .sm\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .sm\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .sm\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .sm\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .sm\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .sm\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .sm\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .sm\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .sm\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .sm\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .sm\:rounded-none { + border-radius: 0; + } + + .sm\:rounded-sm { + border-radius: 0.125rem; + } + + .sm\:rounded { + border-radius: 0.25rem; + } + + .sm\:rounded-md { + border-radius: 0.375rem; + } + + .sm\:rounded-lg { + border-radius: 0.5rem; + } + + .sm\:rounded-xl { + border-radius: 0.675rem; + } + + .sm\:rounded-2xl { + border-radius: 0.75rem; + } + + .sm\:rounded-3xl { + border-radius: 0.875rem; + } + + .sm\:rounded-4xl { + border-radius: 1rem; + } + + .sm\:rounded-5xl { + border-radius: 1.25rem; + } + + .sm\:rounded-6xl { + border-radius: 1.375rem; + } + + .sm\:rounded-7xl { + border-radius: 1.5rem; + } + + .sm\:rounded-8xl { + border-radius: 2rem; + } + + .sm\:rounded-9xl { + border-radius: 2.25rem; + } + + .sm\:rounded-10xl { + border-radius: 2.5rem; + } + + .sm\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .sm\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .sm\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .sm\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .sm\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .sm\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .sm\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .sm\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .sm\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .sm\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .sm\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .sm\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .sm\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .sm\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .sm\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .sm\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .sm\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .sm\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .sm\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .sm\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .sm\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .sm\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .sm\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .sm\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .sm\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .sm\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .sm\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .sm\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .sm\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .sm\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .sm\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .sm\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .sm\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .sm\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .sm\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .sm\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .sm\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .sm\:rounded-l-11xl { + 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: 0.125rem; + } + + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .sm\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .sm\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .sm\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .sm\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .sm\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .sm\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .sm\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .sm\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .sm\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .sm\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .sm\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .sm\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .sm\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .sm\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .sm\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .sm\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .sm\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .sm\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .sm\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .sm\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .sm\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .sm\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .sm\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .sm\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .sm\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .sm\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .sm\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .sm\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .sm\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .sm\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .sm\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .sm\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .sm\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .sm\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .sm\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .sm\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .sm\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .sm\:place-items-auto { + place-items: auto; + } + + .sm\:place-items-start { + place-items: start; + } + + .sm\:place-items-end { + place-items: end; + } + + .sm\:place-items-center { + place-items: center; + } + + .sm\:place-items-stretch { + place-items: stretch; + } + + .sm\:place-content-center { + place-content: center; + } + + .sm\:place-content-start { + place-content: start; + } + + .sm\:place-content-end { + place-content: end; + } + + .sm\:place-content-between { + place-content: space-between; + } + + .sm\:place-content-around { + place-content: space-around; + } + + .sm\:place-content-evenly { + place-content: space-evenly; + } + + .sm\:place-content-stretch { + place-content: stretch; + } + + .sm\:place-self-auto { + place-self: auto; + } + + .sm\:place-self-start { + place-self: start; + } + + .sm\:place-self-end { + place-self: end; + } + + .sm\:place-self-center { + place-self: center; + } + + .sm\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .sm\:justify-items-start { + justify-items: start; + } + + .sm\:justify-items-end { + justify-items: end; + } + + .sm\:justify-items-center { + justify-items: center; + } + + .sm\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .sm\:justify-self-start { + justify-self: start; + } + + .sm\:justify-self-end { + justify-self: end; + } + + .sm\:justify-self-center { + justify-self: center; + } + + .sm\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .sm\:clear-right { + clear: right; + } + + .sm\:clear-both { + clear: both; + } + + .sm\:clear-none { + clear: none; + } + + .sm\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .sm\:h-1 { + height: 0.25rem; + } + + .sm\:h-2 { + height: 0.5rem; + } + + .sm\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:h-1\.5 { + height: 0.375rem; + } + + .sm\:h-2\.5 { + height: 0.625rem; + } + + .sm\:h-3\.5 { + height: 0.875rem; + } + + .sm\:h-full { + height: 100%; + } + + .sm\:h-screen { + height: 100vh; + } + + .sm\:text-xxs { + font-size: 0.6875rem; + } + + .sm\:text-xs { + font-size: 0.75rem; + } + + .sm\:text-sm { + font-size: 0.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: 3.75rem; + } + + .sm\:text-7xl { + font-size: 4.5rem; + } + + .sm\:text-8xl { + font-size: 6rem; + } + + .sm\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .sm\:m-1 { + margin: 0.25rem; + } + + .sm\:m-2 { + margin: 0.5rem; + } + + .sm\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:m-1\.5 { + margin: 0.375rem; + } + + .sm\:m-2\.5 { + margin: 0.625rem; + } + + .sm\:m-3\.5 { + margin: 0.875rem; + } + + .sm\:-m-0 { + margin: 0px; + } + + .sm\:-m-1 { + margin: -0.25rem; + } + + .sm\:-m-2 { + margin: -0.5rem; + } + + .sm\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .sm\:-m-1\.5 { + margin: -0.375rem; + } + + .sm\:-m-2\.5 { + margin: -0.625rem; + } + + .sm\:-m-3\.5 { + margin: -0.875rem; + } + + .sm\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .sm\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .sm\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .sm\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .sm\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .sm\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .sm\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .sm\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .sm\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .sm\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .sm\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .sm\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .sm\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .sm\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .sm\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .sm\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .sm\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .sm\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .sm\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .sm\:mt-0 { + margin-top: 0px; + } + + .sm\:mr-0 { + margin-right: 0px; + } + + .sm\:mb-0 { + margin-bottom: 0px; + } + + .sm\:ml-0 { + margin-left: 0px; + } + + .sm\:mt-1 { + margin-top: 0.25rem; + } + + .sm\:mr-1 { + margin-right: 0.25rem; + } + + .sm\:mb-1 { + margin-bottom: 0.25rem; + } + + .sm\:ml-1 { + margin-left: 0.25rem; + } + + .sm\:mt-2 { + margin-top: 0.5rem; + } + + .sm\:mr-2 { + margin-right: 0.5rem; + } + + .sm\:mb-2 { + margin-bottom: 0.5rem; + } + + .sm\:ml-2 { + margin-left: 0.5rem; + } + + .sm\:mt-3 { + margin-top: 0.75rem; + } + + .sm\:mr-3 { + margin-right: 0.75rem; + } + + .sm\:mb-3 { + margin-bottom: 0.75rem; + } + + .sm\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .sm\:mr-0\.5 { + margin-right: 0.125rem; + } + + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem; + } + + .sm\:mt-1\.5 { + margin-top: 0.375rem; + } + + .sm\:mr-1\.5 { + margin-right: 0.375rem; + } + + .sm\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem; + } + + .sm\:mt-2\.5 { + margin-top: 0.625rem; + } + + .sm\:mr-2\.5 { + margin-right: 0.625rem; + } + + .sm\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem; + } + + .sm\:mt-3\.5 { + margin-top: 0.875rem; + } + + .sm\:mr-3\.5 { + margin-right: 0.875rem; + } + + .sm\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem; + } + + .sm\:-mt-0 { + margin-top: 0px; + } + + .sm\:-mr-0 { + margin-right: 0px; + } + + .sm\:-mb-0 { + margin-bottom: 0px; + } + + .sm\:-ml-0 { + margin-left: 0px; + } + + .sm\:-mt-1 { + margin-top: -0.25rem; + } + + .sm\:-mr-1 { + margin-right: -0.25rem; + } + + .sm\:-mb-1 { + margin-bottom: -0.25rem; + } + + .sm\:-ml-1 { + margin-left: -0.25rem; + } + + .sm\:-mt-2 { + margin-top: -0.5rem; + } + + .sm\:-mr-2 { + margin-right: -0.5rem; + } + + .sm\:-mb-2 { + margin-bottom: -0.5rem; + } + + .sm\:-ml-2 { + margin-left: -0.5rem; + } + + .sm\:-mt-3 { + margin-top: -0.75rem; + } + + .sm\:-mr-3 { + margin-right: -0.75rem; + } + + .sm\:-mb-3 { + margin-bottom: -0.75rem; + } + + .sm\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .sm\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .sm\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .sm\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .sm\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .sm\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .sm\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .sm\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .sm\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .sm\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .sm\:max-h-full { + max-height: 100%; + } + + .sm\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .sm\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .sm\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .sm\:opacity-10 { + opacity: 0.1; + } + + .sm\:opacity-20 { + opacity: 0.2; + } + + .sm\:opacity-25 { + opacity: 0.25; + } + + .sm\:opacity-30 { + opacity: 0.3; + } + + .sm\:opacity-40 { + opacity: 0.4; + } + + .sm\:opacity-50 { + opacity: 0.5; + } + + .sm\:opacity-60 { + opacity: 0.6; + } + + .sm\:opacity-70 { + opacity: 0.7; + } + + .sm\:opacity-75 { + opacity: 0.75; + } + + .sm\:opacity-80 { + opacity: 0.8; + } + + .sm\:opacity-90 { + opacity: 0.9; + } + + .sm\:opacity-95 { + opacity: 0.95; + } + + .sm\:opacity-100 { + opacity: 1; + } + + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1; + } + + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .sm\:hover\:opacity-0:hover { + opacity: 0; + } + + .sm\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .sm\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .sm\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .sm\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .sm\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .sm\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .sm\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .sm\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .sm\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .sm\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .sm\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .sm\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .sm\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .sm\:hover\:opacity-100:hover { + opacity: 1; + } + + .sm\:focus\:opacity-0:focus { + opacity: 0; + } + + .sm\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .sm\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .sm\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .sm\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .sm\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .sm\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .sm\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .sm\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .sm\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .sm\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .sm\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .sm\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .sm\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .sm\:focus\:opacity-100:focus { + opacity: 1; + } + + .sm\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .sm\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .sm\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .sm\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .sm\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .sm\:p-0 { + padding: 0px; + } + + .sm\:p-1 { + padding: 0.25rem; + } + + .sm\:p-2 { + padding: 0.5rem; + } + + .sm\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:p-1\.5 { + padding: 0.375rem; + } + + .sm\:p-2\.5 { + padding: 0.625rem; + } + + .sm\:p-3\.5 { + padding: 0.875rem; + } + + .sm\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .sm\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .sm\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .sm\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .sm\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .sm\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .sm\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .sm\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .sm\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .sm\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .sm\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .sm\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .sm\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .sm\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .sm\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .sm\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .sm\:pt-0 { + padding-top: 0px; + } + + .sm\:pr-0 { + padding-right: 0px; + } + + .sm\:pb-0 { + padding-bottom: 0px; + } + + .sm\:pl-0 { + padding-left: 0px; + } + + .sm\:pt-1 { + padding-top: 0.25rem; + } + + .sm\:pr-1 { + padding-right: 0.25rem; + } + + .sm\:pb-1 { + padding-bottom: 0.25rem; + } + + .sm\:pl-1 { + padding-left: 0.25rem; + } + + .sm\:pt-2 { + padding-top: 0.5rem; + } + + .sm\:pr-2 { + padding-right: 0.5rem; + } + + .sm\:pb-2 { + padding-bottom: 0.5rem; + } + + .sm\:pl-2 { + padding-left: 0.5rem; + } + + .sm\:pt-3 { + padding-top: 0.75rem; + } + + .sm\:pr-3 { + padding-right: 0.75rem; + } + + .sm\:pb-3 { + padding-bottom: 0.75rem; + } + + .sm\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .sm\:pr-0\.5 { + padding-right: 0.125rem; + } + + .sm\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .sm\:pl-0\.5 { + padding-left: 0.125rem; + } + + .sm\:pt-1\.5 { + padding-top: 0.375rem; + } + + .sm\:pr-1\.5 { + padding-right: 0.375rem; + } + + .sm\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .sm\:pl-1\.5 { + padding-left: 0.375rem; + } + + .sm\:pt-2\.5 { + padding-top: 0.625rem; + } + + .sm\:pr-2\.5 { + padding-right: 0.625rem; + } + + .sm\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .sm\:pl-2\.5 { + padding-left: 0.625rem; + } + + .sm\:pt-3\.5 { + padding-top: 0.875rem; + } + + .sm\:pr-3\.5 { + padding-right: 0.875rem; + } + + .sm\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .sm\:pl-3\.5 { + padding-left: 0.875rem; + } + + .sm\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .sm\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .sm\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .sm\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .sm\:placeholder-current::placeholder { + color: currentColor; + } + + .sm\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .sm\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .sm\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .sm\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .sm\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .sm\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .sm\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .sm\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .sm\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .sm\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .sm\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .sm\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .sm\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .sm\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .sm\:-inset-x-px { + right: -1px; + left: -1px; + } + + .sm\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .sm\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .sm\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .sm\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .sm\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .sm\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .sm\:-inset-x-full { + right: -100%; + left: -100%; + } + + .sm\:top-0 { + top: 0px; + } + + .sm\:right-0 { + right: 0px; + } + + .sm\:bottom-0 { + bottom: 0px; + } + + .sm\:left-0 { + left: 0px; + } + + .sm\:top-1 { + top: 0.25rem; + } + + .sm\:right-1 { + right: 0.25rem; + } + + .sm\:bottom-1 { + bottom: 0.25rem; + } + + .sm\:left-1 { + left: 0.25rem; + } + + .sm\:top-2 { + top: 0.5rem; + } + + .sm\:right-2 { + right: 0.5rem; + } + + .sm\:bottom-2 { + bottom: 0.5rem; + } + + .sm\:left-2 { + left: 0.5rem; + } + + .sm\:top-3 { + top: 0.75rem; + } + + .sm\:right-3 { + right: 0.75rem; + } + + .sm\:bottom-3 { + bottom: 0.75rem; + } + + .sm\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .sm\:right-14 { + right: 3.5rem; + } + + .sm\:bottom-14 { + bottom: 3.5rem; + } + + .sm\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:right-0\.5 { + right: 0.125rem; + } + + .sm\:bottom-0\.5 { + bottom: 0.125rem; + } + + .sm\:left-0\.5 { + left: 0.125rem; + } + + .sm\:top-1\.5 { + top: 0.375rem; + } + + .sm\:right-1\.5 { + right: 0.375rem; + } + + .sm\:bottom-1\.5 { + bottom: 0.375rem; + } + + .sm\:left-1\.5 { + left: 0.375rem; + } + + .sm\:top-2\.5 { + top: 0.625rem; + } + + .sm\:right-2\.5 { + right: 0.625rem; + } + + .sm\:bottom-2\.5 { + bottom: 0.625rem; + } + + .sm\:left-2\.5 { + left: 0.625rem; + } + + .sm\:top-3\.5 { + top: 0.875rem; + } + + .sm\:right-3\.5 { + right: 0.875rem; + } + + .sm\:bottom-3\.5 { + bottom: 0.875rem; + } + + .sm\:left-3\.5 { + left: 0.875rem; + } + + .sm\:-top-0 { + top: 0px; + } + + .sm\:-right-0 { + right: 0px; + } + + .sm\:-bottom-0 { + bottom: 0px; + } + + .sm\:-left-0 { + left: 0px; + } + + .sm\:-top-1 { + top: -0.25rem; + } + + .sm\:-right-1 { + right: -0.25rem; + } + + .sm\:-bottom-1 { + bottom: -0.25rem; + } + + .sm\:-left-1 { + left: -0.25rem; + } + + .sm\:-top-2 { + top: -0.5rem; + } + + .sm\:-right-2 { + right: -0.5rem; + } + + .sm\:-bottom-2 { + bottom: -0.5rem; + } + + .sm\:-left-2 { + left: -0.5rem; + } + + .sm\:-top-3 { + top: -0.75rem; + } + + .sm\:-right-3 { + right: -0.75rem; + } + + .sm\:-bottom-3 { + bottom: -0.75rem; + } + + .sm\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .sm\:-right-14 { + right: -3.5rem; + } + + .sm\:-bottom-14 { + bottom: -3.5rem; + } + + .sm\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .sm\:-right-px { + right: -1px; + } + + .sm\:-bottom-px { + bottom: -1px; + } + + .sm\:-left-px { + left: -1px; + } + + .sm\:-top-0\.5 { + top: -0.125rem; + } + + .sm\:-right-0\.5 { + right: -0.125rem; + } + + .sm\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .sm\:-left-0\.5 { + left: -0.125rem; + } + + .sm\:-top-1\.5 { + top: -0.375rem; + } + + .sm\:-right-1\.5 { + right: -0.375rem; + } + + .sm\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .sm\:-left-1\.5 { + left: -0.375rem; + } + + .sm\:-top-2\.5 { + top: -0.625rem; + } + + .sm\:-right-2\.5 { + right: -0.625rem; + } + + .sm\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .sm\:-left-2\.5 { + left: -0.625rem; + } + + .sm\:-top-3\.5 { + top: -0.875rem; + } + + .sm\:-right-3\.5 { + right: -0.875rem; + } + + .sm\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .sm\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .sm\:right-full { + right: 100%; + } + + .sm\:bottom-full { + bottom: 100%; + } + + .sm\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-inset { + --tw-ring-inset: inset; + } + + .sm\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .sm\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .sm\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .sm\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .sm\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .sm\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .sm\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .sm\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .sm\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .sm\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .sm\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .sm\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .sm\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .sm\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .sm\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .sm\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .sm\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .sm\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .sm\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .sm\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .sm\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .sm\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .sm\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .sm\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .sm\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .sm\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .sm\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .sm\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .sm\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .sm\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .sm\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .sm\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .sm\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .sm\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .sm\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .sm\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .sm\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .sm\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .sm\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .sm\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .sm\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .sm\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .sm\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .sm\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .sm\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .sm\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .sm\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .sm\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .sm\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .sm\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .sm\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .sm\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .sm\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .sm\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .sm\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .sm\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .sm\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .sm\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .sm\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .sm\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .sm\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .sm\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .sm\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .sm\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .sm\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .sm\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .sm\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .sm\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .sm\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .sm\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .sm\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .sm\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .sm\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .sm\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .sm\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .sm\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .sm\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .sm\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .sm\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .sm\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .sm\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .sm\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .sm\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .sm\:ring-current { + --tw-ring-color: currentColor; + } + + .sm\:ring-transparent { + --tw-ring-color: transparent; + } + + .sm\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .sm\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .sm\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .sm\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .sm\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .sm\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .sm\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .sm\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .sm\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .sm\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .sm\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .sm\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .sm\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .sm\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .sm\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .sm\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .sm\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .sm\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .sm\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .sm\:text-transparent { + color: transparent; + } + + .sm\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .sm\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .sm\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .sm\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .sm\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:hover\:text-current:hover { + color: currentColor; + } + + .sm\:hover\:text-transparent:hover { + color: transparent; + } + + .sm\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus\:text-current:focus { + color: currentColor; + } + + .sm\:focus\:text-transparent:focus { + color: transparent; + } + + .sm\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .sm\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .sm\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .sm\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .sm\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .sm\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .sm\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .sm\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .sm\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .sm\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .sm\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .sm\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .sm\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .sm\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .sm\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .sm\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .sm\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .sm\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .sm\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .sm\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .sm\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .sm\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .sm\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .sm\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .sm\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .sm\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .sm\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .sm\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .sm\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .sm\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .sm\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .sm\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .sm\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .sm\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .sm\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .sm\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .sm\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .sm\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .sm\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .sm\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .sm\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .sm\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .sm\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .sm\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .sm\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .sm\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .sm\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .sm\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .sm\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .sm\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .sm\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .sm\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .sm\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .sm\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .sm\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .sm\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .sm\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .sm\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .sm\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .sm\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .sm\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .sm\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .sm\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .sm\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .sm\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .sm\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .sm\:focus-within\:no-underline:focus-within { + 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\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .sm\:normal-nums { + font-variant-numeric: normal; + } + + .sm\:ordinal { + --tw-ordinal: ordinal; + } + + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .sm\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .sm\:tracking-tighter { + letter-spacing: -0.02em; + } + + .sm\:tracking-tight { + letter-spacing: -1px; + } + + .sm\:tracking-normal { + letter-spacing: 0em; + } + + .sm\:tracking-wide { + letter-spacing: 0.03em; + } + + .sm\:tracking-wider { + letter-spacing: 0.08em; + } + + .sm\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .sm\:w-1 { + width: 0.25rem; + } + + .sm\:w-2 { + width: 0.5rem; + } + + .sm\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:w-1\.5 { + width: 0.375rem; + } + + .sm\:w-2\.5 { + width: 0.625rem; + } + + .sm\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .sm\:gap-1 { + gap: 0.25rem; + } + + .sm\:gap-2 { + gap: 0.5rem; + } + + .sm\:gap-3 { + gap: 0.75rem; + } + + .sm\:gap-4 { + gap: 1rem; + } + + .sm\:gap-5 { + gap: 1.25rem; + } + + .sm\:gap-6 { + gap: 1.5rem; + } + + .sm\:gap-7 { + gap: 1.75rem; + } + + .sm\:gap-8 { + gap: 2rem; + } + + .sm\:gap-9 { + gap: 2.25rem; + } + + .sm\:gap-10 { + gap: 2.5rem; + } + + .sm\:gap-11 { + gap: 2.75rem; + } + + .sm\:gap-12 { + gap: 3rem; + } + + .sm\:gap-14 { + gap: 3.5rem; + } + + .sm\:gap-16 { + gap: 4rem; + } + + .sm\:gap-20 { + gap: 5rem; + } + + .sm\:gap-24 { + gap: 6rem; + } + + .sm\:gap-28 { + gap: 7rem; + } + + .sm\:gap-32 { + gap: 8rem; + } + + .sm\:gap-36 { + gap: 9rem; + } + + .sm\:gap-40 { + gap: 10rem; + } + + .sm\:gap-44 { + gap: 11rem; + } + + .sm\:gap-48 { + gap: 12rem; + } + + .sm\:gap-52 { + gap: 13rem; + } + + .sm\:gap-56 { + gap: 14rem; + } + + .sm\:gap-60 { + gap: 15rem; + } + + .sm\:gap-64 { + gap: 16rem; + } + + .sm\:gap-72 { + gap: 18rem; + } + + .sm\:gap-80 { + gap: 20rem; + } + + .sm\:gap-96 { + gap: 24rem; + } + + .sm\:gap-px { + gap: 1px; + } + + .sm\:gap-0\.5 { + gap: 0.125rem; + } + + .sm\:gap-1\.5 { + gap: 0.375rem; + } + + .sm\:gap-2\.5 { + gap: 0.625rem; + } + + .sm\:gap-3\.5 { + gap: 0.875rem; + } + + .sm\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .sm\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .sm\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .sm\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .sm\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .sm\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .sm\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .sm\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .sm\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .sm\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .sm\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .sm\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .sm\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .sm\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .sm\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .sm\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .sm\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .sm\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .sm\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .sm\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .sm\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .sm\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .sm\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .sm\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .sm\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .sm\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .sm\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .sm\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .sm\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .sm\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .sm\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .sm\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .sm\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .sm\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .sm\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .sm\:gap-y-0 { + row-gap: 0px; + } + + .sm\:gap-y-1 { + row-gap: 0.25rem; + } + + .sm\:gap-y-2 { + row-gap: 0.5rem; + } + + .sm\:gap-y-3 { + row-gap: 0.75rem; + } + + .sm\:gap-y-4 { + row-gap: 1rem; + } + + .sm\:gap-y-5 { + row-gap: 1.25rem; + } + + .sm\:gap-y-6 { + row-gap: 1.5rem; + } + + .sm\:gap-y-7 { + row-gap: 1.75rem; + } + + .sm\:gap-y-8 { + row-gap: 2rem; + } + + .sm\:gap-y-9 { + row-gap: 2.25rem; + } + + .sm\:gap-y-10 { + row-gap: 2.5rem; + } + + .sm\:gap-y-11 { + row-gap: 2.75rem; + } + + .sm\:gap-y-12 { + row-gap: 3rem; + } + + .sm\:gap-y-14 { + row-gap: 3.5rem; + } + + .sm\:gap-y-16 { + row-gap: 4rem; + } + + .sm\:gap-y-20 { + row-gap: 5rem; + } + + .sm\:gap-y-24 { + row-gap: 6rem; + } + + .sm\:gap-y-28 { + row-gap: 7rem; + } + + .sm\:gap-y-32 { + row-gap: 8rem; + } + + .sm\:gap-y-36 { + row-gap: 9rem; + } + + .sm\:gap-y-40 { + row-gap: 10rem; + } + + .sm\:gap-y-44 { + row-gap: 11rem; + } + + .sm\:gap-y-48 { + row-gap: 12rem; + } + + .sm\:gap-y-52 { + row-gap: 13rem; + } + + .sm\:gap-y-56 { + row-gap: 14rem; + } + + .sm\:gap-y-60 { + row-gap: 15rem; + } + + .sm\:gap-y-64 { + row-gap: 16rem; + } + + .sm\:gap-y-72 { + row-gap: 18rem; + } + + .sm\:gap-y-80 { + row-gap: 20rem; + } + + .sm\:gap-y-96 { + row-gap: 24rem; + } + + .sm\:gap-y-px { + row-gap: 1px; + } + + .sm\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .sm\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .sm\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .sm\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .sm\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .sm\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .sm\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .sm\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:scale-x-0 { + --tw-scale-x: 0; + } + + .sm\:scale-x-50 { + --tw-scale-x: .5; + } + + .sm\:scale-x-75 { + --tw-scale-x: .75; + } + + .sm\:scale-x-90 { + --tw-scale-x: .9; + } + + .sm\:scale-x-95 { + --tw-scale-x: .95; + } + + .sm\:scale-x-100 { + --tw-scale-x: 1; + } + + .sm\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .sm\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .sm\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .sm\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .sm\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .sm\:rotate-0 { + --tw-rotate: 0deg; + } + + .sm\:rotate-1 { + --tw-rotate: 1deg; + } + + .sm\:rotate-2 { + --tw-rotate: 2deg; + } + + .sm\:rotate-3 { + --tw-rotate: 3deg; + } + + .sm\:rotate-6 { + --tw-rotate: 6deg; + } + + .sm\:rotate-12 { + --tw-rotate: 12deg; + } + + .sm\:rotate-45 { + --tw-rotate: 45deg; + } + + .sm\:rotate-90 { + --tw-rotate: 90deg; + } + + .sm\:rotate-180 { + --tw-rotate: 180deg; + } + + .sm\:-rotate-180 { + --tw-rotate: -180deg; + } + + .sm\:-rotate-90 { + --tw-rotate: -90deg; + } + + .sm\:-rotate-45 { + --tw-rotate: -45deg; + } + + .sm\:-rotate-12 { + --tw-rotate: -12deg; + } + + .sm\:-rotate-6 { + --tw-rotate: -6deg; + } + + .sm\:-rotate-3 { + --tw-rotate: -3deg; + } + + .sm\:-rotate-2 { + --tw-rotate: -2deg; + } + + .sm\:-rotate-1 { + --tw-rotate: -1deg; + } + + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .sm\:translate-x-0 { + --tw-translate-x: 0px; + } + + .sm\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .sm\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .sm\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .sm\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .sm\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .sm\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .sm\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .sm\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .sm\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .sm\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .sm\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .sm\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .sm\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .sm\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .sm\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .sm\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .sm\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .sm\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .sm\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .sm\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .sm\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .sm\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .sm\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .sm\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .sm\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .sm\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .sm\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .sm\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .sm\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .sm\:translate-x-px { + --tw-translate-x: 1px; + } + + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .sm\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .sm\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .sm\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .sm\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .sm\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .sm\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .sm\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .sm\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .sm\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .sm\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .sm\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .sm\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .sm\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .sm\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .sm\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .sm\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .sm\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .sm\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .sm\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .sm\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .sm\:-translate-x-px { + --tw-translate-x: -1px; + } + + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .sm\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .sm\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .sm\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .sm\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .sm\:translate-x-full { + --tw-translate-x: 100%; + } + + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .sm\:-translate-x-full { + --tw-translate-x: -100%; + } + + .sm\:translate-y-0 { + --tw-translate-y: 0px; + } + + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .sm\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .sm\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .sm\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .sm\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .sm\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .sm\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .sm\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .sm\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .sm\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .sm\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .sm\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .sm\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .sm\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .sm\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .sm\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .sm\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .sm\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .sm\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .sm\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .sm\:translate-y-px { + --tw-translate-y: 1px; + } + + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .sm\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .sm\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .sm\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .sm\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .sm\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .sm\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .sm\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .sm\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .sm\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .sm\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .sm\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .sm\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .sm\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .sm\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .sm\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .sm\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .sm\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .sm\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .sm\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .sm\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .sm\:-translate-y-px { + --tw-translate-y: -1px; + } + + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .sm\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .sm\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .sm\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .sm\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .sm\:translate-y-full { + --tw-translate-y: 100%; + } + + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .sm\:-translate-y-full { + --tw-translate-y: -100%; + } + + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .sm\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .sm\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .sm\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .sm\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .sm\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .sm\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .sm\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .sm\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .sm\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .sm\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .sm\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .sm\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .sm\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .sm\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .sm\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .sm\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .sm\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .sm\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .sm\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .sm\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .sm\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .sm\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .sm\:transition-none { + transition-property: none; + } + + .sm\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:ease-linear { + transition-timing-function: linear; + } + + .sm\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .sm\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .sm\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .sm\:duration-75 { + transition-duration: 75ms; + } + + .sm\:duration-100 { + transition-duration: 100ms; + } + + .sm\:duration-150 { + transition-duration: 150ms; + } + + .sm\:duration-200 { + transition-duration: 200ms; + } + + .sm\:duration-300 { + transition-duration: 300ms; + } + + .sm\:duration-500 { + transition-duration: 500ms; + } + + .sm\:duration-700 { + transition-duration: 700ms; + } + + .sm\:duration-1000 { + transition-duration: 1000ms; + } + + .sm\:delay-75 { + transition-delay: 75ms; + } + + .sm\:delay-100 { + transition-delay: 100ms; + } + + .sm\:delay-150 { + transition-delay: 150ms; + } + + .sm\:delay-200 { + transition-delay: 200ms; + } + + .sm\:delay-300 { + transition-delay: 300ms; + } + + .sm\:delay-500 { + transition-delay: 500ms; + } + + .sm\:delay-700 { + transition-delay: 700ms; + } + + .sm\:delay-1000 { + transition-delay: 1000ms; + } + + .sm\:animate-none { + -webkit-animation: none; + animation: none; + } + + .sm\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .sm\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .sm\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .sm\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@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; + } + } + + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .md\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .md\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .md\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .md\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .md\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .md\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .md\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .md\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .md\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .md\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .md\:bg-clip-padding { + background-clip: padding-box; + } + + .md\:bg-clip-content { + background-clip: content-box; + } + + .md\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .md\:bg-current { + background-color: currentColor; + } + + .md\:bg-transparent { + background-color: transparent; + } + + .md\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .md\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .md\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-current:hover { + background-color: currentColor; + } + + .md\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .md\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-current:focus { + background-color: currentColor; + } + + .md\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .md\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:bg-none { + background-image: none; + } + + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .md\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:to-current { + --tw-gradient-to: currentColor; + } + + .md\:to-transparent { + --tw-gradient-to: transparent; + } + + .md\:to-black { + --tw-gradient-to: #000; + } + + .md\:to-white { + --tw-gradient-to: #fff; + } + + .md\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .md\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .md\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .md\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .md\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .md\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .md\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .md\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .md\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .md\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .md\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .md\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .md\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .md\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .md\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .md\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .md\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .md\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .md\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .md\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .md\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .md\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .md\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .md\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .md\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .md\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .md\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .md\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .md\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .md\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .md\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .md\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .md\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .md\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .md\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .md\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .md\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .md\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .md\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .md\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .md\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .md\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .md\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .md\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .md\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .md\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .md\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .md\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .md\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .md\:to-green-900 { + --tw-gradient-to: #156633; + } + + .md\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .md\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .md\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .md\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .md\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .md\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .md\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .md\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .md\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .md\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .md\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .md\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .md\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .md\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .md\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .md\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .md\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .md\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .md\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .md\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .md\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .md\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .md\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .md\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .md\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .md\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .md\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .md\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .md\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .md\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .md\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .md\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .md\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .md\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .md\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .md\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .md\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .md\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .md\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .md\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .md\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .md\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .md\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .md\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .md\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .md\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .md\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .md\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .md\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .md\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .md\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .md\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .md\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .md\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .md\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .md\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .md\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .md\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .md\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .md\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .md\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .md\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .md\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .md\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .md\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .md\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .md\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .md\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .md\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .md\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .md\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .md\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .md\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .md\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .md\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .md\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .md\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .md\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .md\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .md\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .md\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .md\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .md\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .md\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .md\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .md\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .md\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .md\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .md\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .md\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .md\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .md\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .md\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .md\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .md\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .md\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .md\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .md\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .md\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .md\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .md\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .md\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .md\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .md\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .md\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .md\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .md\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .md\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .md\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .md\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .md\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .md\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .md\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .md\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .md\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .md\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .md\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .md\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .md\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .md\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .md\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .md\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .md\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .md\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .md\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .md\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .md\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .md\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .md\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .md\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .md\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .md\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .md\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .md\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .md\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .md\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .md\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .md\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .md\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .md\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .md\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .md\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .md\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .md\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .md\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .md\:border-transparent { + border-color: transparent; + } + + .md\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .md\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .md\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:hover\:border-current:hover { + border-color: currentColor; + } + + .md\:hover\:border-transparent:hover { + border-color: transparent; + } + + .md\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:focus\:border-current:focus { + border-color: currentColor; + } + + .md\:focus\:border-transparent:focus { + border-color: transparent; + } + + .md\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .md\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .md\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .md\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .md\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .md\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .md\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .md\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .md\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .md\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .md\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .md\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .md\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .md\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .md\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .md\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .md\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .md\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .md\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .md\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .md\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .md\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .md\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .md\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .md\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .md\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .md\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .md\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .md\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .md\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .md\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .md\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .md\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .md\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .md\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .md\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .md\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .md\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .md\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .md\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .md\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .md\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .md\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .md\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .md\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .md\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .md\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .md\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .md\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .md\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .md\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .md\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .md\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .md\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .md\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .md\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .md\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .md\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .md\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .md\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .md\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .md\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .md\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .md\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .md\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .md\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .md\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .md\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .md\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .md\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .md\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .md\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .md\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .md\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .md\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .md\:rounded-none { + border-radius: 0; + } + + .md\:rounded-sm { + border-radius: 0.125rem; + } + + .md\:rounded { + border-radius: 0.25rem; + } + + .md\:rounded-md { + border-radius: 0.375rem; + } + + .md\:rounded-lg { + border-radius: 0.5rem; + } + + .md\:rounded-xl { + border-radius: 0.675rem; + } + + .md\:rounded-2xl { + border-radius: 0.75rem; + } + + .md\:rounded-3xl { + border-radius: 0.875rem; + } + + .md\:rounded-4xl { + border-radius: 1rem; + } + + .md\:rounded-5xl { + border-radius: 1.25rem; + } + + .md\:rounded-6xl { + border-radius: 1.375rem; + } + + .md\:rounded-7xl { + border-radius: 1.5rem; + } + + .md\:rounded-8xl { + border-radius: 2rem; + } + + .md\:rounded-9xl { + border-radius: 2.25rem; + } + + .md\:rounded-10xl { + border-radius: 2.5rem; + } + + .md\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .md\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .md\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .md\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .md\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .md\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .md\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .md\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .md\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .md\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .md\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .md\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .md\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .md\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .md\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .md\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .md\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .md\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .md\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .md\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .md\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .md\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .md\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .md\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .md\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .md\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .md\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .md\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .md\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .md\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .md\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .md\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .md\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .md\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .md\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .md\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .md\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .md\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .md\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .md\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .md\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .md\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .md\:rounded-l-11xl { + 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: 0.125rem; + } + + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .md\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .md\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .md\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .md\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .md\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .md\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .md\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .md\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .md\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .md\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .md\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .md\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .md\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .md\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .md\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .md\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .md\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .md\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .md\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .md\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .md\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .md\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .md\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .md\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .md\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .md\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .md\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .md\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .md\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .md\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .md\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .md\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .md\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .md\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .md\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .md\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .md\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .md\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .md\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .md\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .md\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .md\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .md\:place-items-auto { + place-items: auto; + } + + .md\:place-items-start { + place-items: start; + } + + .md\:place-items-end { + place-items: end; + } + + .md\:place-items-center { + place-items: center; + } + + .md\:place-items-stretch { + place-items: stretch; + } + + .md\:place-content-center { + place-content: center; + } + + .md\:place-content-start { + place-content: start; + } + + .md\:place-content-end { + place-content: end; + } + + .md\:place-content-between { + place-content: space-between; + } + + .md\:place-content-around { + place-content: space-around; + } + + .md\:place-content-evenly { + place-content: space-evenly; + } + + .md\:place-content-stretch { + place-content: stretch; + } + + .md\:place-self-auto { + place-self: auto; + } + + .md\:place-self-start { + place-self: start; + } + + .md\:place-self-end { + place-self: end; + } + + .md\:place-self-center { + place-self: center; + } + + .md\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .md\:justify-items-start { + justify-items: start; + } + + .md\:justify-items-end { + justify-items: end; + } + + .md\:justify-items-center { + justify-items: center; + } + + .md\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .md\:justify-self-start { + justify-self: start; + } + + .md\:justify-self-end { + justify-self: end; + } + + .md\:justify-self-center { + justify-self: center; + } + + .md\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .md\:clear-right { + clear: right; + } + + .md\:clear-both { + clear: both; + } + + .md\:clear-none { + clear: none; + } + + .md\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .md\:h-1 { + height: 0.25rem; + } + + .md\:h-2 { + height: 0.5rem; + } + + .md\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:h-1\.5 { + height: 0.375rem; + } + + .md\:h-2\.5 { + height: 0.625rem; + } + + .md\:h-3\.5 { + height: 0.875rem; + } + + .md\:h-full { + height: 100%; + } + + .md\:h-screen { + height: 100vh; + } + + .md\:text-xxs { + font-size: 0.6875rem; + } + + .md\:text-xs { + font-size: 0.75rem; + } + + .md\:text-sm { + font-size: 0.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: 3.75rem; + } + + .md\:text-7xl { + font-size: 4.5rem; + } + + .md\:text-8xl { + font-size: 6rem; + } + + .md\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .md\:m-1 { + margin: 0.25rem; + } + + .md\:m-2 { + margin: 0.5rem; + } + + .md\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:m-1\.5 { + margin: 0.375rem; + } + + .md\:m-2\.5 { + margin: 0.625rem; + } + + .md\:m-3\.5 { + margin: 0.875rem; + } + + .md\:-m-0 { + margin: 0px; + } + + .md\:-m-1 { + margin: -0.25rem; + } + + .md\:-m-2 { + margin: -0.5rem; + } + + .md\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .md\:-m-1\.5 { + margin: -0.375rem; + } + + .md\:-m-2\.5 { + margin: -0.625rem; + } + + .md\:-m-3\.5 { + margin: -0.875rem; + } + + .md\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .md\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .md\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .md\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .md\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .md\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .md\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .md\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .md\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .md\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .md\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .md\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .md\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .md\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .md\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .md\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .md\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .md\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .md\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .md\:mt-0 { + margin-top: 0px; + } + + .md\:mr-0 { + margin-right: 0px; + } + + .md\:mb-0 { + margin-bottom: 0px; + } + + .md\:ml-0 { + margin-left: 0px; + } + + .md\:mt-1 { + margin-top: 0.25rem; + } + + .md\:mr-1 { + margin-right: 0.25rem; + } + + .md\:mb-1 { + margin-bottom: 0.25rem; + } + + .md\:ml-1 { + margin-left: 0.25rem; + } + + .md\:mt-2 { + margin-top: 0.5rem; + } + + .md\:mr-2 { + margin-right: 0.5rem; + } + + .md\:mb-2 { + margin-bottom: 0.5rem; + } + + .md\:ml-2 { + margin-left: 0.5rem; + } + + .md\:mt-3 { + margin-top: 0.75rem; + } + + .md\:mr-3 { + margin-right: 0.75rem; + } + + .md\:mb-3 { + margin-bottom: 0.75rem; + } + + .md\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .md\:mr-0\.5 { + margin-right: 0.125rem; + } + + .md\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem; + } + + .md\:mt-1\.5 { + margin-top: 0.375rem; + } + + .md\:mr-1\.5 { + margin-right: 0.375rem; + } + + .md\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem; + } + + .md\:mt-2\.5 { + margin-top: 0.625rem; + } + + .md\:mr-2\.5 { + margin-right: 0.625rem; + } + + .md\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem; + } + + .md\:mt-3\.5 { + margin-top: 0.875rem; + } + + .md\:mr-3\.5 { + margin-right: 0.875rem; + } + + .md\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem; + } + + .md\:-mt-0 { + margin-top: 0px; + } + + .md\:-mr-0 { + margin-right: 0px; + } + + .md\:-mb-0 { + margin-bottom: 0px; + } + + .md\:-ml-0 { + margin-left: 0px; + } + + .md\:-mt-1 { + margin-top: -0.25rem; + } + + .md\:-mr-1 { + margin-right: -0.25rem; + } + + .md\:-mb-1 { + margin-bottom: -0.25rem; + } + + .md\:-ml-1 { + margin-left: -0.25rem; + } + + .md\:-mt-2 { + margin-top: -0.5rem; + } + + .md\:-mr-2 { + margin-right: -0.5rem; + } + + .md\:-mb-2 { + margin-bottom: -0.5rem; + } + + .md\:-ml-2 { + margin-left: -0.5rem; + } + + .md\:-mt-3 { + margin-top: -0.75rem; + } + + .md\:-mr-3 { + margin-right: -0.75rem; + } + + .md\:-mb-3 { + margin-bottom: -0.75rem; + } + + .md\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .md\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .md\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .md\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .md\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .md\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .md\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .md\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .md\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .md\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .md\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .md\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .md\:max-h-full { + max-height: 100%; + } + + .md\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .md\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .md\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .md\:opacity-10 { + opacity: 0.1; + } + + .md\:opacity-20 { + opacity: 0.2; + } + + .md\:opacity-25 { + opacity: 0.25; + } + + .md\:opacity-30 { + opacity: 0.3; + } + + .md\:opacity-40 { + opacity: 0.4; + } + + .md\:opacity-50 { + opacity: 0.5; + } + + .md\:opacity-60 { + opacity: 0.6; + } + + .md\:opacity-70 { + opacity: 0.7; + } + + .md\:opacity-75 { + opacity: 0.75; + } + + .md\:opacity-80 { + opacity: 0.8; + } + + .md\:opacity-90 { + opacity: 0.9; + } + + .md\:opacity-95 { + opacity: 0.95; + } + + .md\:opacity-100 { + opacity: 1; + } + + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1; + } + + .md\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .md\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .md\:hover\:opacity-0:hover { + opacity: 0; + } + + .md\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .md\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .md\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .md\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .md\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .md\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .md\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .md\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .md\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .md\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .md\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .md\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .md\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .md\:hover\:opacity-100:hover { + opacity: 1; + } + + .md\:focus\:opacity-0:focus { + opacity: 0; + } + + .md\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .md\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .md\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .md\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .md\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .md\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .md\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .md\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .md\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .md\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .md\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .md\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .md\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .md\:focus\:opacity-100:focus { + opacity: 1; + } + + .md\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .md\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .md\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .md\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .md\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .md\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .md\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .md\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .md\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .md\:p-0 { + padding: 0px; + } + + .md\:p-1 { + padding: 0.25rem; + } + + .md\:p-2 { + padding: 0.5rem; + } + + .md\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:p-1\.5 { + padding: 0.375rem; + } + + .md\:p-2\.5 { + padding: 0.625rem; + } + + .md\:p-3\.5 { + padding: 0.875rem; + } + + .md\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .md\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .md\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .md\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .md\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .md\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .md\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .md\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .md\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .md\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .md\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .md\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .md\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .md\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .md\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .md\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .md\:pt-0 { + padding-top: 0px; + } + + .md\:pr-0 { + padding-right: 0px; + } + + .md\:pb-0 { + padding-bottom: 0px; + } + + .md\:pl-0 { + padding-left: 0px; + } + + .md\:pt-1 { + padding-top: 0.25rem; + } + + .md\:pr-1 { + padding-right: 0.25rem; + } + + .md\:pb-1 { + padding-bottom: 0.25rem; + } + + .md\:pl-1 { + padding-left: 0.25rem; + } + + .md\:pt-2 { + padding-top: 0.5rem; + } + + .md\:pr-2 { + padding-right: 0.5rem; + } + + .md\:pb-2 { + padding-bottom: 0.5rem; + } + + .md\:pl-2 { + padding-left: 0.5rem; + } + + .md\:pt-3 { + padding-top: 0.75rem; + } + + .md\:pr-3 { + padding-right: 0.75rem; + } + + .md\:pb-3 { + padding-bottom: 0.75rem; + } + + .md\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .md\:pr-0\.5 { + padding-right: 0.125rem; + } + + .md\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .md\:pl-0\.5 { + padding-left: 0.125rem; + } + + .md\:pt-1\.5 { + padding-top: 0.375rem; + } + + .md\:pr-1\.5 { + padding-right: 0.375rem; + } + + .md\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .md\:pl-1\.5 { + padding-left: 0.375rem; + } + + .md\:pt-2\.5 { + padding-top: 0.625rem; + } + + .md\:pr-2\.5 { + padding-right: 0.625rem; + } + + .md\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .md\:pl-2\.5 { + padding-left: 0.625rem; + } + + .md\:pt-3\.5 { + padding-top: 0.875rem; + } + + .md\:pr-3\.5 { + padding-right: 0.875rem; + } + + .md\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .md\:pl-3\.5 { + padding-left: 0.875rem; + } + + .md\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .md\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .md\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .md\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .md\:placeholder-current::placeholder { + color: currentColor; + } + + .md\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .md\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .md\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .md\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .md\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .md\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .md\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .md\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .md\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .md\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .md\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .md\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .md\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .md\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .md\:inset-x-0 { + right: 0px; + left: 0px; + } + + .md\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .md\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .md\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .md\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .md\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .md\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .md\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .md\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .md\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .md\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .md\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .md\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .md\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .md\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .md\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .md\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .md\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .md\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .md\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .md\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .md\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .md\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .md\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .md\:-inset-x-px { + right: -1px; + left: -1px; + } + + .md\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .md\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .md\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .md\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .md\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .md\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .md\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .md\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .md\:-inset-x-full { + right: -100%; + left: -100%; + } + + .md\:top-0 { + top: 0px; + } + + .md\:right-0 { + right: 0px; + } + + .md\:bottom-0 { + bottom: 0px; + } + + .md\:left-0 { + left: 0px; + } + + .md\:top-1 { + top: 0.25rem; + } + + .md\:right-1 { + right: 0.25rem; + } + + .md\:bottom-1 { + bottom: 0.25rem; + } + + .md\:left-1 { + left: 0.25rem; + } + + .md\:top-2 { + top: 0.5rem; + } + + .md\:right-2 { + right: 0.5rem; + } + + .md\:bottom-2 { + bottom: 0.5rem; + } + + .md\:left-2 { + left: 0.5rem; + } + + .md\:top-3 { + top: 0.75rem; + } + + .md\:right-3 { + right: 0.75rem; + } + + .md\:bottom-3 { + bottom: 0.75rem; + } + + .md\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .md\:right-14 { + right: 3.5rem; + } + + .md\:bottom-14 { + bottom: 3.5rem; + } + + .md\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:right-0\.5 { + right: 0.125rem; + } + + .md\:bottom-0\.5 { + bottom: 0.125rem; + } + + .md\:left-0\.5 { + left: 0.125rem; + } + + .md\:top-1\.5 { + top: 0.375rem; + } + + .md\:right-1\.5 { + right: 0.375rem; + } + + .md\:bottom-1\.5 { + bottom: 0.375rem; + } + + .md\:left-1\.5 { + left: 0.375rem; + } + + .md\:top-2\.5 { + top: 0.625rem; + } + + .md\:right-2\.5 { + right: 0.625rem; + } + + .md\:bottom-2\.5 { + bottom: 0.625rem; + } + + .md\:left-2\.5 { + left: 0.625rem; + } + + .md\:top-3\.5 { + top: 0.875rem; + } + + .md\:right-3\.5 { + right: 0.875rem; + } + + .md\:bottom-3\.5 { + bottom: 0.875rem; + } + + .md\:left-3\.5 { + left: 0.875rem; + } + + .md\:-top-0 { + top: 0px; + } + + .md\:-right-0 { + right: 0px; + } + + .md\:-bottom-0 { + bottom: 0px; + } + + .md\:-left-0 { + left: 0px; + } + + .md\:-top-1 { + top: -0.25rem; + } + + .md\:-right-1 { + right: -0.25rem; + } + + .md\:-bottom-1 { + bottom: -0.25rem; + } + + .md\:-left-1 { + left: -0.25rem; + } + + .md\:-top-2 { + top: -0.5rem; + } + + .md\:-right-2 { + right: -0.5rem; + } + + .md\:-bottom-2 { + bottom: -0.5rem; + } + + .md\:-left-2 { + left: -0.5rem; + } + + .md\:-top-3 { + top: -0.75rem; + } + + .md\:-right-3 { + right: -0.75rem; + } + + .md\:-bottom-3 { + bottom: -0.75rem; + } + + .md\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .md\:-right-14 { + right: -3.5rem; + } + + .md\:-bottom-14 { + bottom: -3.5rem; + } + + .md\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .md\:-right-px { + right: -1px; + } + + .md\:-bottom-px { + bottom: -1px; + } + + .md\:-left-px { + left: -1px; + } + + .md\:-top-0\.5 { + top: -0.125rem; + } + + .md\:-right-0\.5 { + right: -0.125rem; + } + + .md\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .md\:-left-0\.5 { + left: -0.125rem; + } + + .md\:-top-1\.5 { + top: -0.375rem; + } + + .md\:-right-1\.5 { + right: -0.375rem; + } + + .md\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .md\:-left-1\.5 { + left: -0.375rem; + } + + .md\:-top-2\.5 { + top: -0.625rem; + } + + .md\:-right-2\.5 { + right: -0.625rem; + } + + .md\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .md\:-left-2\.5 { + left: -0.625rem; + } + + .md\:-top-3\.5 { + top: -0.875rem; + } + + .md\:-right-3\.5 { + right: -0.875rem; + } + + .md\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .md\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .md\:right-full { + right: 100%; + } + + .md\:bottom-full { + bottom: 100%; + } + + .md\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-inset { + --tw-ring-inset: inset; + } + + .md\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .md\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .md\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .md\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .md\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .md\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .md\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .md\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .md\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .md\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .md\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .md\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .md\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .md\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .md\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .md\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .md\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .md\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .md\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .md\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .md\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .md\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .md\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .md\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .md\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .md\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .md\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .md\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .md\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .md\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .md\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .md\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .md\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .md\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .md\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .md\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .md\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .md\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .md\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .md\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .md\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .md\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .md\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .md\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .md\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .md\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .md\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .md\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .md\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .md\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .md\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .md\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .md\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .md\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .md\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .md\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .md\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .md\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .md\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .md\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .md\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .md\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .md\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .md\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .md\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .md\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .md\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .md\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .md\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .md\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .md\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .md\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .md\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .md\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .md\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .md\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .md\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .md\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .md\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .md\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .md\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .md\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .md\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .md\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .md\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .md\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .md\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .md\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .md\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .md\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .md\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .md\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .md\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .md\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .md\:ring-current { + --tw-ring-color: currentColor; + } + + .md\:ring-transparent { + --tw-ring-color: transparent; + } + + .md\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .md\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .md\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .md\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .md\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .md\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .md\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .md\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .md\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .md\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .md\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .md\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .md\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .md\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .md\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .md\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .md\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .md\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .md\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .md\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .md\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .md\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .md\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .md\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .md\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .md\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .md\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .md\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .md\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .md\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .md\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .md\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .md\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .md\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .md\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .md\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .md\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .md\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .md\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .md\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .md\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .md\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .md\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .md\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .md\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .md\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .md\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .md\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .md\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .md\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .md\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .md\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .md\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .md\:text-transparent { + color: transparent; + } + + .md\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .md\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .md\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .md\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .md\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:hover\:text-current:hover { + color: currentColor; + } + + .md\:hover\:text-transparent:hover { + color: transparent; + } + + .md\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus\:text-current:focus { + color: currentColor; + } + + .md\:focus\:text-transparent:focus { + color: transparent; + } + + .md\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .md\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .md\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .md\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .md\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .md\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .md\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .md\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .md\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .md\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .md\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .md\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .md\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .md\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .md\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .md\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .md\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .md\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .md\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .md\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .md\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .md\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .md\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .md\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .md\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .md\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .md\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .md\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .md\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .md\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .md\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .md\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .md\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .md\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .md\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .md\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .md\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .md\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .md\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .md\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .md\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .md\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .md\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .md\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .md\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .md\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .md\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .md\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .md\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .md\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .md\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .md\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .md\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .md\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .md\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .md\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .md\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .md\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .md\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .md\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .md\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .md\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .md\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .md\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .md\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .md\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .md\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .md\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .md\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .md\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .md\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .md\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .md\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .md\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .md\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .md\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .md\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .md\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .md\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .md\:focus-within\:no-underline:focus-within { + 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\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .md\:normal-nums { + font-variant-numeric: normal; + } + + .md\:ordinal { + --tw-ordinal: ordinal; + } + + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .md\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .md\:tracking-tighter { + letter-spacing: -0.02em; + } + + .md\:tracking-tight { + letter-spacing: -1px; + } + + .md\:tracking-normal { + letter-spacing: 0em; + } + + .md\:tracking-wide { + letter-spacing: 0.03em; + } + + .md\:tracking-wider { + letter-spacing: 0.08em; + } + + .md\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .md\:w-1 { + width: 0.25rem; + } + + .md\:w-2 { + width: 0.5rem; + } + + .md\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:w-1\.5 { + width: 0.375rem; + } + + .md\:w-2\.5 { + width: 0.625rem; + } + + .md\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .md\:gap-1 { + gap: 0.25rem; + } + + .md\:gap-2 { + gap: 0.5rem; + } + + .md\:gap-3 { + gap: 0.75rem; + } + + .md\:gap-4 { + gap: 1rem; + } + + .md\:gap-5 { + gap: 1.25rem; + } + + .md\:gap-6 { + gap: 1.5rem; + } + + .md\:gap-7 { + gap: 1.75rem; + } + + .md\:gap-8 { + gap: 2rem; + } + + .md\:gap-9 { + gap: 2.25rem; + } + + .md\:gap-10 { + gap: 2.5rem; + } + + .md\:gap-11 { + gap: 2.75rem; + } + + .md\:gap-12 { + gap: 3rem; + } + + .md\:gap-14 { + gap: 3.5rem; + } + + .md\:gap-16 { + gap: 4rem; + } + + .md\:gap-20 { + gap: 5rem; + } + + .md\:gap-24 { + gap: 6rem; + } + + .md\:gap-28 { + gap: 7rem; + } + + .md\:gap-32 { + gap: 8rem; + } + + .md\:gap-36 { + gap: 9rem; + } + + .md\:gap-40 { + gap: 10rem; + } + + .md\:gap-44 { + gap: 11rem; + } + + .md\:gap-48 { + gap: 12rem; + } + + .md\:gap-52 { + gap: 13rem; + } + + .md\:gap-56 { + gap: 14rem; + } + + .md\:gap-60 { + gap: 15rem; + } + + .md\:gap-64 { + gap: 16rem; + } + + .md\:gap-72 { + gap: 18rem; + } + + .md\:gap-80 { + gap: 20rem; + } + + .md\:gap-96 { + gap: 24rem; + } + + .md\:gap-px { + gap: 1px; + } + + .md\:gap-0\.5 { + gap: 0.125rem; + } + + .md\:gap-1\.5 { + gap: 0.375rem; + } + + .md\:gap-2\.5 { + gap: 0.625rem; + } + + .md\:gap-3\.5 { + gap: 0.875rem; + } + + .md\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .md\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .md\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .md\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .md\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .md\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .md\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .md\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .md\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .md\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .md\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .md\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .md\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .md\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .md\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .md\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .md\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .md\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .md\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .md\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .md\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .md\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .md\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .md\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .md\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .md\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .md\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .md\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .md\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .md\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .md\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .md\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .md\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .md\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .md\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .md\:gap-y-0 { + row-gap: 0px; + } + + .md\:gap-y-1 { + row-gap: 0.25rem; + } + + .md\:gap-y-2 { + row-gap: 0.5rem; + } + + .md\:gap-y-3 { + row-gap: 0.75rem; + } + + .md\:gap-y-4 { + row-gap: 1rem; + } + + .md\:gap-y-5 { + row-gap: 1.25rem; + } + + .md\:gap-y-6 { + row-gap: 1.5rem; + } + + .md\:gap-y-7 { + row-gap: 1.75rem; + } + + .md\:gap-y-8 { + row-gap: 2rem; + } + + .md\:gap-y-9 { + row-gap: 2.25rem; + } + + .md\:gap-y-10 { + row-gap: 2.5rem; + } + + .md\:gap-y-11 { + row-gap: 2.75rem; + } + + .md\:gap-y-12 { + row-gap: 3rem; + } + + .md\:gap-y-14 { + row-gap: 3.5rem; + } + + .md\:gap-y-16 { + row-gap: 4rem; + } + + .md\:gap-y-20 { + row-gap: 5rem; + } + + .md\:gap-y-24 { + row-gap: 6rem; + } + + .md\:gap-y-28 { + row-gap: 7rem; + } + + .md\:gap-y-32 { + row-gap: 8rem; + } + + .md\:gap-y-36 { + row-gap: 9rem; + } + + .md\:gap-y-40 { + row-gap: 10rem; + } + + .md\:gap-y-44 { + row-gap: 11rem; + } + + .md\:gap-y-48 { + row-gap: 12rem; + } + + .md\:gap-y-52 { + row-gap: 13rem; + } + + .md\:gap-y-56 { + row-gap: 14rem; + } + + .md\:gap-y-60 { + row-gap: 15rem; + } + + .md\:gap-y-64 { + row-gap: 16rem; + } + + .md\:gap-y-72 { + row-gap: 18rem; + } + + .md\:gap-y-80 { + row-gap: 20rem; + } + + .md\:gap-y-96 { + row-gap: 24rem; + } + + .md\:gap-y-px { + row-gap: 1px; + } + + .md\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .md\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .md\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .md\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .md\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .md\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .md\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .md\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .md\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:scale-x-0 { + --tw-scale-x: 0; + } + + .md\:scale-x-50 { + --tw-scale-x: .5; + } + + .md\:scale-x-75 { + --tw-scale-x: .75; + } + + .md\:scale-x-90 { + --tw-scale-x: .9; + } + + .md\:scale-x-95 { + --tw-scale-x: .95; + } + + .md\:scale-x-100 { + --tw-scale-x: 1; + } + + .md\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .md\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .md\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .md\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .md\:scale-y-0 { + --tw-scale-y: 0; + } + + .md\:scale-y-50 { + --tw-scale-y: .5; + } + + .md\:scale-y-75 { + --tw-scale-y: .75; + } + + .md\:scale-y-90 { + --tw-scale-y: .9; + } + + .md\:scale-y-95 { + --tw-scale-y: .95; + } + + .md\:scale-y-100 { + --tw-scale-y: 1; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .md\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .md\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .md\:rotate-0 { + --tw-rotate: 0deg; + } + + .md\:rotate-1 { + --tw-rotate: 1deg; + } + + .md\:rotate-2 { + --tw-rotate: 2deg; + } + + .md\:rotate-3 { + --tw-rotate: 3deg; + } + + .md\:rotate-6 { + --tw-rotate: 6deg; + } + + .md\:rotate-12 { + --tw-rotate: 12deg; + } + + .md\:rotate-45 { + --tw-rotate: 45deg; + } + + .md\:rotate-90 { + --tw-rotate: 90deg; + } + + .md\:rotate-180 { + --tw-rotate: 180deg; + } + + .md\:-rotate-180 { + --tw-rotate: -180deg; + } + + .md\:-rotate-90 { + --tw-rotate: -90deg; + } + + .md\:-rotate-45 { + --tw-rotate: -45deg; + } + + .md\:-rotate-12 { + --tw-rotate: -12deg; + } + + .md\:-rotate-6 { + --tw-rotate: -6deg; + } + + .md\:-rotate-3 { + --tw-rotate: -3deg; + } + + .md\:-rotate-2 { + --tw-rotate: -2deg; + } + + .md\:-rotate-1 { + --tw-rotate: -1deg; + } + + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .md\:translate-x-0 { + --tw-translate-x: 0px; + } + + .md\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .md\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .md\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .md\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .md\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .md\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .md\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .md\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .md\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .md\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .md\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .md\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .md\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .md\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .md\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .md\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .md\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .md\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .md\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .md\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .md\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .md\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .md\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .md\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .md\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .md\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .md\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .md\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .md\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .md\:translate-x-px { + --tw-translate-x: 1px; + } + + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .md\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .md\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .md\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .md\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .md\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .md\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .md\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .md\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .md\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .md\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .md\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .md\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .md\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .md\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .md\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .md\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .md\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .md\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .md\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .md\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .md\:-translate-x-px { + --tw-translate-x: -1px; + } + + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .md\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .md\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .md\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .md\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .md\:translate-x-full { + --tw-translate-x: 100%; + } + + .md\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .md\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .md\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .md\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .md\:-translate-x-full { + --tw-translate-x: -100%; + } + + .md\:translate-y-0 { + --tw-translate-y: 0px; + } + + .md\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .md\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .md\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .md\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .md\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .md\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .md\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .md\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .md\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .md\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .md\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .md\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .md\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .md\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .md\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .md\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .md\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .md\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .md\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .md\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .md\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .md\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .md\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .md\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .md\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .md\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .md\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .md\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .md\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .md\:translate-y-px { + --tw-translate-y: 1px; + } + + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .md\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .md\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .md\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .md\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .md\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .md\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .md\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .md\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .md\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .md\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .md\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .md\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .md\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .md\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .md\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .md\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .md\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .md\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .md\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .md\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .md\:-translate-y-px { + --tw-translate-y: -1px; + } + + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .md\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .md\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .md\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .md\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .md\:translate-y-full { + --tw-translate-y: 100%; + } + + .md\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .md\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .md\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .md\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .md\:-translate-y-full { + --tw-translate-y: -100%; + } + + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .md\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .md\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .md\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .md\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .md\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .md\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .md\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .md\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .md\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .md\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .md\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .md\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .md\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .md\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .md\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .md\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .md\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .md\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .md\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .md\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .md\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .md\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .md\:transition-none { + transition-property: none; + } + + .md\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:ease-linear { + transition-timing-function: linear; + } + + .md\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .md\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .md\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .md\:duration-75 { + transition-duration: 75ms; + } + + .md\:duration-100 { + transition-duration: 100ms; + } + + .md\:duration-150 { + transition-duration: 150ms; + } + + .md\:duration-200 { + transition-duration: 200ms; + } + + .md\:duration-300 { + transition-duration: 300ms; + } + + .md\:duration-500 { + transition-duration: 500ms; + } + + .md\:duration-700 { + transition-duration: 700ms; + } + + .md\:duration-1000 { + transition-duration: 1000ms; + } + + .md\:delay-75 { + transition-delay: 75ms; + } + + .md\:delay-100 { + transition-delay: 100ms; + } + + .md\:delay-150 { + transition-delay: 150ms; + } + + .md\:delay-200 { + transition-delay: 200ms; + } + + .md\:delay-300 { + transition-delay: 300ms; + } + + .md\:delay-500 { + transition-delay: 500ms; + } + + .md\:delay-700 { + transition-delay: 700ms; + } + + .md\:delay-1000 { + transition-delay: 1000ms; + } + + .md\:animate-none { + -webkit-animation: none; + animation: none; + } + + .md\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .md\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .md\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .md\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@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; + } + } + + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .lg\:bg-clip-padding { + background-clip: padding-box; + } + + .lg\:bg-clip-content { + background-clip: content-box; + } + + .lg\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .lg\:bg-current { + background-color: currentColor; + } + + .lg\:bg-transparent { + background-color: transparent; + } + + .lg\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .lg\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .lg\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-current:hover { + background-color: currentColor; + } + + .lg\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .lg\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-current:focus { + background-color: currentColor; + } + + .lg\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .lg\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-none { + background-image: none; + } + + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .lg\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:to-current { + --tw-gradient-to: currentColor; + } + + .lg\:to-transparent { + --tw-gradient-to: transparent; + } + + .lg\:to-black { + --tw-gradient-to: #000; + } + + .lg\:to-white { + --tw-gradient-to: #fff; + } + + .lg\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .lg\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .lg\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .lg\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .lg\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .lg\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .lg\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .lg\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .lg\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .lg\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .lg\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .lg\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .lg\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .lg\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .lg\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .lg\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .lg\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .lg\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .lg\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .lg\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .lg\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .lg\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .lg\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .lg\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .lg\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .lg\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .lg\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .lg\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .lg\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .lg\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .lg\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .lg\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .lg\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .lg\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .lg\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .lg\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .lg\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .lg\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .lg\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .lg\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .lg\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .lg\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .lg\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .lg\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .lg\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .lg\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .lg\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .lg\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .lg\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .lg\:to-green-900 { + --tw-gradient-to: #156633; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .lg\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .lg\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .lg\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .lg\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .lg\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .lg\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .lg\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .lg\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .lg\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .lg\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .lg\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .lg\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .lg\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .lg\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .lg\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .lg\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .lg\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .lg\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .lg\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .lg\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .lg\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .lg\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .lg\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .lg\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .lg\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .lg\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .lg\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .lg\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .lg\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .lg\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .lg\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .lg\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .lg\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .lg\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .lg\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .lg\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .lg\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .lg\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .lg\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .lg\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .lg\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .lg\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .lg\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .lg\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .lg\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .lg\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .lg\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .lg\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .lg\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .lg\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .lg\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .lg\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .lg\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .lg\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .lg\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .lg\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .lg\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .lg\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .lg\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .lg\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .lg\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .lg\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .lg\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .lg\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .lg\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .lg\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .lg\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .lg\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .lg\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .lg\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .lg\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .lg\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .lg\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .lg\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .lg\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .lg\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .lg\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .lg\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .lg\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .lg\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .lg\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .lg\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .lg\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .lg\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .lg\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .lg\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .lg\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .lg\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .lg\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .lg\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .lg\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .lg\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .lg\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .lg\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .lg\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .lg\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .lg\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .lg\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .lg\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .lg\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .lg\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .lg\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .lg\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .lg\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .lg\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .lg\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .lg\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .lg\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .lg\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .lg\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .lg\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .lg\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .lg\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .lg\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .lg\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .lg\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .lg\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .lg\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .lg\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .lg\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .lg\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .lg\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .lg\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .lg\:border-transparent { + border-color: transparent; + } + + .lg\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .lg\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .lg\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:hover\:border-current:hover { + border-color: currentColor; + } + + .lg\:hover\:border-transparent:hover { + border-color: transparent; + } + + .lg\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:focus\:border-current:focus { + border-color: currentColor; + } + + .lg\:focus\:border-transparent:focus { + border-color: transparent; + } + + .lg\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .lg\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .lg\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .lg\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .lg\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .lg\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .lg\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .lg\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .lg\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .lg\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .lg\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .lg\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .lg\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .lg\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .lg\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .lg\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .lg\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .lg\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .lg\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .lg\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .lg\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .lg\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .lg\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .lg\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .lg\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .lg\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .lg\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .lg\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .lg\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .lg\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .lg\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .lg\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .lg\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .lg\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .lg\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .lg\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .lg\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .lg\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .lg\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .lg\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .lg\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .lg\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .lg\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .lg\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .lg\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .lg\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .lg\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .lg\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .lg\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .lg\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .lg\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .lg\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .lg\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .lg\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .lg\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .lg\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .lg\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .lg\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .lg\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .lg\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .lg\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .lg\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .lg\:rounded-none { + border-radius: 0; + } + + .lg\:rounded-sm { + border-radius: 0.125rem; + } + + .lg\:rounded { + border-radius: 0.25rem; + } + + .lg\:rounded-md { + border-radius: 0.375rem; + } + + .lg\:rounded-lg { + border-radius: 0.5rem; + } + + .lg\:rounded-xl { + border-radius: 0.675rem; + } + + .lg\:rounded-2xl { + border-radius: 0.75rem; + } + + .lg\:rounded-3xl { + border-radius: 0.875rem; + } + + .lg\:rounded-4xl { + border-radius: 1rem; + } + + .lg\:rounded-5xl { + border-radius: 1.25rem; + } + + .lg\:rounded-6xl { + border-radius: 1.375rem; + } + + .lg\:rounded-7xl { + border-radius: 1.5rem; + } + + .lg\:rounded-8xl { + border-radius: 2rem; + } + + .lg\:rounded-9xl { + border-radius: 2.25rem; + } + + .lg\:rounded-10xl { + border-radius: 2.5rem; + } + + .lg\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .lg\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .lg\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .lg\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .lg\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .lg\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .lg\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .lg\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .lg\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .lg\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .lg\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .lg\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .lg\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .lg\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .lg\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .lg\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .lg\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .lg\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .lg\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .lg\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .lg\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .lg\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .lg\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .lg\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .lg\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .lg\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .lg\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .lg\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .lg\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .lg\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .lg\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .lg\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .lg\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .lg\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .lg\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .lg\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .lg\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .lg\:rounded-l-11xl { + 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: 0.125rem; + } + + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .lg\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .lg\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .lg\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .lg\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .lg\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .lg\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .lg\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .lg\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .lg\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .lg\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .lg\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .lg\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .lg\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .lg\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .lg\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .lg\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .lg\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .lg\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .lg\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .lg\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .lg\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .lg\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .lg\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .lg\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .lg\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .lg\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .lg\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .lg\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .lg\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .lg\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .lg\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .lg\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .lg\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .lg\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .lg\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .lg\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .lg\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .lg\:place-items-auto { + place-items: auto; + } + + .lg\:place-items-start { + place-items: start; + } + + .lg\:place-items-end { + place-items: end; + } + + .lg\:place-items-center { + place-items: center; + } + + .lg\:place-items-stretch { + place-items: stretch; + } + + .lg\:place-content-center { + place-content: center; + } + + .lg\:place-content-start { + place-content: start; + } + + .lg\:place-content-end { + place-content: end; + } + + .lg\:place-content-between { + place-content: space-between; + } + + .lg\:place-content-around { + place-content: space-around; + } + + .lg\:place-content-evenly { + place-content: space-evenly; + } + + .lg\:place-content-stretch { + place-content: stretch; + } + + .lg\:place-self-auto { + place-self: auto; + } + + .lg\:place-self-start { + place-self: start; + } + + .lg\:place-self-end { + place-self: end; + } + + .lg\:place-self-center { + place-self: center; + } + + .lg\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .lg\:justify-items-start { + justify-items: start; + } + + .lg\:justify-items-end { + justify-items: end; + } + + .lg\:justify-items-center { + justify-items: center; + } + + .lg\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .lg\:justify-self-start { + justify-self: start; + } + + .lg\:justify-self-end { + justify-self: end; + } + + .lg\:justify-self-center { + justify-self: center; + } + + .lg\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .lg\:clear-right { + clear: right; + } + + .lg\:clear-both { + clear: both; + } + + .lg\:clear-none { + clear: none; + } + + .lg\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .lg\:h-1 { + height: 0.25rem; + } + + .lg\:h-2 { + height: 0.5rem; + } + + .lg\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:h-1\.5 { + height: 0.375rem; + } + + .lg\:h-2\.5 { + height: 0.625rem; + } + + .lg\:h-3\.5 { + height: 0.875rem; + } + + .lg\:h-full { + height: 100%; + } + + .lg\:h-screen { + height: 100vh; + } + + .lg\:text-xxs { + font-size: 0.6875rem; + } + + .lg\:text-xs { + font-size: 0.75rem; + } + + .lg\:text-sm { + font-size: 0.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: 3.75rem; + } + + .lg\:text-7xl { + font-size: 4.5rem; + } + + .lg\:text-8xl { + font-size: 6rem; + } + + .lg\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .lg\:m-1 { + margin: 0.25rem; + } + + .lg\:m-2 { + margin: 0.5rem; + } + + .lg\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:m-1\.5 { + margin: 0.375rem; + } + + .lg\:m-2\.5 { + margin: 0.625rem; + } + + .lg\:m-3\.5 { + margin: 0.875rem; + } + + .lg\:-m-0 { + margin: 0px; + } + + .lg\:-m-1 { + margin: -0.25rem; + } + + .lg\:-m-2 { + margin: -0.5rem; + } + + .lg\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .lg\:-m-1\.5 { + margin: -0.375rem; + } + + .lg\:-m-2\.5 { + margin: -0.625rem; + } + + .lg\:-m-3\.5 { + margin: -0.875rem; + } + + .lg\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .lg\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .lg\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .lg\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .lg\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .lg\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .lg\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .lg\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .lg\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .lg\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .lg\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .lg\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .lg\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .lg\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .lg\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .lg\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .lg\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .lg\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .lg\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .lg\:mt-0 { + margin-top: 0px; + } + + .lg\:mr-0 { + margin-right: 0px; + } + + .lg\:mb-0 { + margin-bottom: 0px; + } + + .lg\:ml-0 { + margin-left: 0px; + } + + .lg\:mt-1 { + margin-top: 0.25rem; + } + + .lg\:mr-1 { + margin-right: 0.25rem; + } + + .lg\:mb-1 { + margin-bottom: 0.25rem; + } + + .lg\:ml-1 { + margin-left: 0.25rem; + } + + .lg\:mt-2 { + margin-top: 0.5rem; + } + + .lg\:mr-2 { + margin-right: 0.5rem; + } + + .lg\:mb-2 { + margin-bottom: 0.5rem; + } + + .lg\:ml-2 { + margin-left: 0.5rem; + } + + .lg\:mt-3 { + margin-top: 0.75rem; + } + + .lg\:mr-3 { + margin-right: 0.75rem; + } + + .lg\:mb-3 { + margin-bottom: 0.75rem; + } + + .lg\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .lg\:mr-0\.5 { + margin-right: 0.125rem; + } + + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem; + } + + .lg\:mt-1\.5 { + margin-top: 0.375rem; + } + + .lg\:mr-1\.5 { + margin-right: 0.375rem; + } + + .lg\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem; + } + + .lg\:mt-2\.5 { + margin-top: 0.625rem; + } + + .lg\:mr-2\.5 { + margin-right: 0.625rem; + } + + .lg\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem; + } + + .lg\:mt-3\.5 { + margin-top: 0.875rem; + } + + .lg\:mr-3\.5 { + margin-right: 0.875rem; + } + + .lg\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem; + } + + .lg\:-mt-0 { + margin-top: 0px; + } + + .lg\:-mr-0 { + margin-right: 0px; + } + + .lg\:-mb-0 { + margin-bottom: 0px; + } + + .lg\:-ml-0 { + margin-left: 0px; + } + + .lg\:-mt-1 { + margin-top: -0.25rem; + } + + .lg\:-mr-1 { + margin-right: -0.25rem; + } + + .lg\:-mb-1 { + margin-bottom: -0.25rem; + } + + .lg\:-ml-1 { + margin-left: -0.25rem; + } + + .lg\:-mt-2 { + margin-top: -0.5rem; + } + + .lg\:-mr-2 { + margin-right: -0.5rem; + } + + .lg\:-mb-2 { + margin-bottom: -0.5rem; + } + + .lg\:-ml-2 { + margin-left: -0.5rem; + } + + .lg\:-mt-3 { + margin-top: -0.75rem; + } + + .lg\:-mr-3 { + margin-right: -0.75rem; + } + + .lg\:-mb-3 { + margin-bottom: -0.75rem; + } + + .lg\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .lg\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .lg\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .lg\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .lg\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .lg\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .lg\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .lg\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .lg\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .lg\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .lg\:max-h-full { + max-height: 100%; + } + + .lg\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .lg\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .lg\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .lg\:opacity-10 { + opacity: 0.1; + } + + .lg\:opacity-20 { + opacity: 0.2; + } + + .lg\:opacity-25 { + opacity: 0.25; + } + + .lg\:opacity-30 { + opacity: 0.3; + } + + .lg\:opacity-40 { + opacity: 0.4; + } + + .lg\:opacity-50 { + opacity: 0.5; + } + + .lg\:opacity-60 { + opacity: 0.6; + } + + .lg\:opacity-70 { + opacity: 0.7; + } + + .lg\:opacity-75 { + opacity: 0.75; + } + + .lg\:opacity-80 { + opacity: 0.8; + } + + .lg\:opacity-90 { + opacity: 0.9; + } + + .lg\:opacity-95 { + opacity: 0.95; + } + + .lg\:opacity-100 { + opacity: 1; + } + + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1; + } + + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .lg\:hover\:opacity-0:hover { + opacity: 0; + } + + .lg\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .lg\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .lg\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .lg\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .lg\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .lg\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .lg\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .lg\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .lg\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .lg\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .lg\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .lg\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .lg\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .lg\:hover\:opacity-100:hover { + opacity: 1; + } + + .lg\:focus\:opacity-0:focus { + opacity: 0; + } + + .lg\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .lg\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .lg\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .lg\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .lg\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .lg\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .lg\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .lg\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .lg\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .lg\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .lg\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .lg\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .lg\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .lg\:focus\:opacity-100:focus { + opacity: 1; + } + + .lg\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .lg\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .lg\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .lg\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .lg\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .lg\:p-0 { + padding: 0px; + } + + .lg\:p-1 { + padding: 0.25rem; + } + + .lg\:p-2 { + padding: 0.5rem; + } + + .lg\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:p-1\.5 { + padding: 0.375rem; + } + + .lg\:p-2\.5 { + padding: 0.625rem; + } + + .lg\:p-3\.5 { + padding: 0.875rem; + } + + .lg\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .lg\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .lg\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .lg\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .lg\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .lg\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .lg\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .lg\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .lg\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .lg\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .lg\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .lg\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .lg\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .lg\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .lg\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .lg\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .lg\:pt-0 { + padding-top: 0px; + } + + .lg\:pr-0 { + padding-right: 0px; + } + + .lg\:pb-0 { + padding-bottom: 0px; + } + + .lg\:pl-0 { + padding-left: 0px; + } + + .lg\:pt-1 { + padding-top: 0.25rem; + } + + .lg\:pr-1 { + padding-right: 0.25rem; + } + + .lg\:pb-1 { + padding-bottom: 0.25rem; + } + + .lg\:pl-1 { + padding-left: 0.25rem; + } + + .lg\:pt-2 { + padding-top: 0.5rem; + } + + .lg\:pr-2 { + padding-right: 0.5rem; + } + + .lg\:pb-2 { + padding-bottom: 0.5rem; + } + + .lg\:pl-2 { + padding-left: 0.5rem; + } + + .lg\:pt-3 { + padding-top: 0.75rem; + } + + .lg\:pr-3 { + padding-right: 0.75rem; + } + + .lg\:pb-3 { + padding-bottom: 0.75rem; + } + + .lg\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .lg\:pr-0\.5 { + padding-right: 0.125rem; + } + + .lg\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .lg\:pl-0\.5 { + padding-left: 0.125rem; + } + + .lg\:pt-1\.5 { + padding-top: 0.375rem; + } + + .lg\:pr-1\.5 { + padding-right: 0.375rem; + } + + .lg\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .lg\:pl-1\.5 { + padding-left: 0.375rem; + } + + .lg\:pt-2\.5 { + padding-top: 0.625rem; + } + + .lg\:pr-2\.5 { + padding-right: 0.625rem; + } + + .lg\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .lg\:pl-2\.5 { + padding-left: 0.625rem; + } + + .lg\:pt-3\.5 { + padding-top: 0.875rem; + } + + .lg\:pr-3\.5 { + padding-right: 0.875rem; + } + + .lg\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .lg\:pl-3\.5 { + padding-left: 0.875rem; + } + + .lg\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .lg\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .lg\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .lg\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .lg\:placeholder-current::placeholder { + color: currentColor; + } + + .lg\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .lg\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .lg\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .lg\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .lg\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .lg\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .lg\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .lg\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .lg\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .lg\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .lg\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .lg\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .lg\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .lg\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .lg\:inset-x-0 { + right: 0px; + left: 0px; + } + + .lg\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .lg\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .lg\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .lg\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .lg\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .lg\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .lg\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .lg\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .lg\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .lg\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .lg\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .lg\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .lg\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .lg\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .lg\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .lg\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .lg\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .lg\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .lg\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .lg\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .lg\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .lg\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .lg\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .lg\:-inset-x-px { + right: -1px; + left: -1px; + } + + .lg\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .lg\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .lg\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .lg\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .lg\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .lg\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .lg\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .lg\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .lg\:-inset-x-full { + right: -100%; + left: -100%; + } + + .lg\:top-0 { + top: 0px; + } + + .lg\:right-0 { + right: 0px; + } + + .lg\:bottom-0 { + bottom: 0px; + } + + .lg\:left-0 { + left: 0px; + } + + .lg\:top-1 { + top: 0.25rem; + } + + .lg\:right-1 { + right: 0.25rem; + } + + .lg\:bottom-1 { + bottom: 0.25rem; + } + + .lg\:left-1 { + left: 0.25rem; + } + + .lg\:top-2 { + top: 0.5rem; + } + + .lg\:right-2 { + right: 0.5rem; + } + + .lg\:bottom-2 { + bottom: 0.5rem; + } + + .lg\:left-2 { + left: 0.5rem; + } + + .lg\:top-3 { + top: 0.75rem; + } + + .lg\:right-3 { + right: 0.75rem; + } + + .lg\:bottom-3 { + bottom: 0.75rem; + } + + .lg\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .lg\:right-14 { + right: 3.5rem; + } + + .lg\:bottom-14 { + bottom: 3.5rem; + } + + .lg\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:right-0\.5 { + right: 0.125rem; + } + + .lg\:bottom-0\.5 { + bottom: 0.125rem; + } + + .lg\:left-0\.5 { + left: 0.125rem; + } + + .lg\:top-1\.5 { + top: 0.375rem; + } + + .lg\:right-1\.5 { + right: 0.375rem; + } + + .lg\:bottom-1\.5 { + bottom: 0.375rem; + } + + .lg\:left-1\.5 { + left: 0.375rem; + } + + .lg\:top-2\.5 { + top: 0.625rem; + } + + .lg\:right-2\.5 { + right: 0.625rem; + } + + .lg\:bottom-2\.5 { + bottom: 0.625rem; + } + + .lg\:left-2\.5 { + left: 0.625rem; + } + + .lg\:top-3\.5 { + top: 0.875rem; + } + + .lg\:right-3\.5 { + right: 0.875rem; + } + + .lg\:bottom-3\.5 { + bottom: 0.875rem; + } + + .lg\:left-3\.5 { + left: 0.875rem; + } + + .lg\:-top-0 { + top: 0px; + } + + .lg\:-right-0 { + right: 0px; + } + + .lg\:-bottom-0 { + bottom: 0px; + } + + .lg\:-left-0 { + left: 0px; + } + + .lg\:-top-1 { + top: -0.25rem; + } + + .lg\:-right-1 { + right: -0.25rem; + } + + .lg\:-bottom-1 { + bottom: -0.25rem; + } + + .lg\:-left-1 { + left: -0.25rem; + } + + .lg\:-top-2 { + top: -0.5rem; + } + + .lg\:-right-2 { + right: -0.5rem; + } + + .lg\:-bottom-2 { + bottom: -0.5rem; + } + + .lg\:-left-2 { + left: -0.5rem; + } + + .lg\:-top-3 { + top: -0.75rem; + } + + .lg\:-right-3 { + right: -0.75rem; + } + + .lg\:-bottom-3 { + bottom: -0.75rem; + } + + .lg\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .lg\:-right-14 { + right: -3.5rem; + } + + .lg\:-bottom-14 { + bottom: -3.5rem; + } + + .lg\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .lg\:-right-px { + right: -1px; + } + + .lg\:-bottom-px { + bottom: -1px; + } + + .lg\:-left-px { + left: -1px; + } + + .lg\:-top-0\.5 { + top: -0.125rem; + } + + .lg\:-right-0\.5 { + right: -0.125rem; + } + + .lg\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .lg\:-left-0\.5 { + left: -0.125rem; + } + + .lg\:-top-1\.5 { + top: -0.375rem; + } + + .lg\:-right-1\.5 { + right: -0.375rem; + } + + .lg\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .lg\:-left-1\.5 { + left: -0.375rem; + } + + .lg\:-top-2\.5 { + top: -0.625rem; + } + + .lg\:-right-2\.5 { + right: -0.625rem; + } + + .lg\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .lg\:-left-2\.5 { + left: -0.625rem; + } + + .lg\:-top-3\.5 { + top: -0.875rem; + } + + .lg\:-right-3\.5 { + right: -0.875rem; + } + + .lg\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .lg\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .lg\:right-full { + right: 100%; + } + + .lg\:bottom-full { + bottom: 100%; + } + + .lg\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-inset { + --tw-ring-inset: inset; + } + + .lg\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .lg\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .lg\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .lg\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .lg\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .lg\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .lg\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .lg\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .lg\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .lg\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .lg\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .lg\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .lg\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .lg\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .lg\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .lg\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .lg\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .lg\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .lg\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .lg\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .lg\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .lg\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .lg\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .lg\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .lg\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .lg\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .lg\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .lg\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .lg\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .lg\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .lg\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .lg\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .lg\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .lg\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .lg\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .lg\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .lg\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .lg\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .lg\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .lg\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .lg\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .lg\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .lg\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .lg\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .lg\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .lg\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .lg\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .lg\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .lg\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .lg\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .lg\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .lg\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .lg\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .lg\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .lg\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .lg\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .lg\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .lg\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .lg\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .lg\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .lg\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .lg\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .lg\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .lg\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .lg\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .lg\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .lg\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .lg\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .lg\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .lg\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .lg\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .lg\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .lg\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .lg\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .lg\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .lg\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .lg\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .lg\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .lg\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .lg\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .lg\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .lg\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .lg\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .lg\:ring-current { + --tw-ring-color: currentColor; + } + + .lg\:ring-transparent { + --tw-ring-color: transparent; + } + + .lg\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .lg\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .lg\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .lg\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .lg\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .lg\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .lg\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .lg\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .lg\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .lg\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .lg\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .lg\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .lg\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .lg\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .lg\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .lg\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .lg\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .lg\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .lg\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .lg\:text-transparent { + color: transparent; + } + + .lg\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .lg\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .lg\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .lg\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .lg\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:hover\:text-current:hover { + color: currentColor; + } + + .lg\:hover\:text-transparent:hover { + color: transparent; + } + + .lg\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus\:text-current:focus { + color: currentColor; + } + + .lg\:focus\:text-transparent:focus { + color: transparent; + } + + .lg\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .lg\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .lg\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .lg\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .lg\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .lg\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .lg\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .lg\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .lg\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .lg\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .lg\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .lg\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .lg\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .lg\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .lg\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .lg\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .lg\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .lg\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .lg\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .lg\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .lg\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .lg\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .lg\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .lg\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .lg\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .lg\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .lg\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .lg\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .lg\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .lg\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .lg\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .lg\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .lg\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .lg\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .lg\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .lg\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .lg\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .lg\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .lg\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .lg\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .lg\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .lg\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .lg\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .lg\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .lg\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .lg\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .lg\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .lg\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .lg\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .lg\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .lg\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .lg\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .lg\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .lg\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .lg\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .lg\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .lg\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .lg\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .lg\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .lg\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .lg\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .lg\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .lg\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .lg\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .lg\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .lg\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .lg\:focus-within\:no-underline:focus-within { + 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\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .lg\:normal-nums { + font-variant-numeric: normal; + } + + .lg\:ordinal { + --tw-ordinal: ordinal; + } + + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .lg\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .lg\:tracking-tighter { + letter-spacing: -0.02em; + } + + .lg\:tracking-tight { + letter-spacing: -1px; + } + + .lg\:tracking-normal { + letter-spacing: 0em; + } + + .lg\:tracking-wide { + letter-spacing: 0.03em; + } + + .lg\:tracking-wider { + letter-spacing: 0.08em; + } + + .lg\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .lg\:w-1 { + width: 0.25rem; + } + + .lg\:w-2 { + width: 0.5rem; + } + + .lg\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:w-1\.5 { + width: 0.375rem; + } + + .lg\:w-2\.5 { + width: 0.625rem; + } + + .lg\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .lg\:gap-1 { + gap: 0.25rem; + } + + .lg\:gap-2 { + gap: 0.5rem; + } + + .lg\:gap-3 { + gap: 0.75rem; + } + + .lg\:gap-4 { + gap: 1rem; + } + + .lg\:gap-5 { + gap: 1.25rem; + } + + .lg\:gap-6 { + gap: 1.5rem; + } + + .lg\:gap-7 { + gap: 1.75rem; + } + + .lg\:gap-8 { + gap: 2rem; + } + + .lg\:gap-9 { + gap: 2.25rem; + } + + .lg\:gap-10 { + gap: 2.5rem; + } + + .lg\:gap-11 { + gap: 2.75rem; + } + + .lg\:gap-12 { + gap: 3rem; + } + + .lg\:gap-14 { + gap: 3.5rem; + } + + .lg\:gap-16 { + gap: 4rem; + } + + .lg\:gap-20 { + gap: 5rem; + } + + .lg\:gap-24 { + gap: 6rem; + } + + .lg\:gap-28 { + gap: 7rem; + } + + .lg\:gap-32 { + gap: 8rem; + } + + .lg\:gap-36 { + gap: 9rem; + } + + .lg\:gap-40 { + gap: 10rem; + } + + .lg\:gap-44 { + gap: 11rem; + } + + .lg\:gap-48 { + gap: 12rem; + } + + .lg\:gap-52 { + gap: 13rem; + } + + .lg\:gap-56 { + gap: 14rem; + } + + .lg\:gap-60 { + gap: 15rem; + } + + .lg\:gap-64 { + gap: 16rem; + } + + .lg\:gap-72 { + gap: 18rem; + } + + .lg\:gap-80 { + gap: 20rem; + } + + .lg\:gap-96 { + gap: 24rem; + } + + .lg\:gap-px { + gap: 1px; + } + + .lg\:gap-0\.5 { + gap: 0.125rem; + } + + .lg\:gap-1\.5 { + gap: 0.375rem; + } + + .lg\:gap-2\.5 { + gap: 0.625rem; + } + + .lg\:gap-3\.5 { + gap: 0.875rem; + } + + .lg\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .lg\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .lg\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .lg\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .lg\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .lg\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .lg\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .lg\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .lg\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .lg\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .lg\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .lg\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .lg\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .lg\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .lg\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .lg\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .lg\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .lg\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .lg\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .lg\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .lg\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .lg\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .lg\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .lg\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .lg\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .lg\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .lg\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .lg\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .lg\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .lg\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .lg\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .lg\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .lg\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .lg\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .lg\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .lg\:gap-y-0 { + row-gap: 0px; + } + + .lg\:gap-y-1 { + row-gap: 0.25rem; + } + + .lg\:gap-y-2 { + row-gap: 0.5rem; + } + + .lg\:gap-y-3 { + row-gap: 0.75rem; + } + + .lg\:gap-y-4 { + row-gap: 1rem; + } + + .lg\:gap-y-5 { + row-gap: 1.25rem; + } + + .lg\:gap-y-6 { + row-gap: 1.5rem; + } + + .lg\:gap-y-7 { + row-gap: 1.75rem; + } + + .lg\:gap-y-8 { + row-gap: 2rem; + } + + .lg\:gap-y-9 { + row-gap: 2.25rem; + } + + .lg\:gap-y-10 { + row-gap: 2.5rem; + } + + .lg\:gap-y-11 { + row-gap: 2.75rem; + } + + .lg\:gap-y-12 { + row-gap: 3rem; + } + + .lg\:gap-y-14 { + row-gap: 3.5rem; + } + + .lg\:gap-y-16 { + row-gap: 4rem; + } + + .lg\:gap-y-20 { + row-gap: 5rem; + } + + .lg\:gap-y-24 { + row-gap: 6rem; + } + + .lg\:gap-y-28 { + row-gap: 7rem; + } + + .lg\:gap-y-32 { + row-gap: 8rem; + } + + .lg\:gap-y-36 { + row-gap: 9rem; + } + + .lg\:gap-y-40 { + row-gap: 10rem; + } + + .lg\:gap-y-44 { + row-gap: 11rem; + } + + .lg\:gap-y-48 { + row-gap: 12rem; + } + + .lg\:gap-y-52 { + row-gap: 13rem; + } + + .lg\:gap-y-56 { + row-gap: 14rem; + } + + .lg\:gap-y-60 { + row-gap: 15rem; + } + + .lg\:gap-y-64 { + row-gap: 16rem; + } + + .lg\:gap-y-72 { + row-gap: 18rem; + } + + .lg\:gap-y-80 { + row-gap: 20rem; + } + + .lg\:gap-y-96 { + row-gap: 24rem; + } + + .lg\:gap-y-px { + row-gap: 1px; + } + + .lg\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .lg\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .lg\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .lg\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .lg\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .lg\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .lg\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .lg\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .lg\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:scale-x-0 { + --tw-scale-x: 0; + } + + .lg\:scale-x-50 { + --tw-scale-x: .5; + } + + .lg\:scale-x-75 { + --tw-scale-x: .75; + } + + .lg\:scale-x-90 { + --tw-scale-x: .9; + } + + .lg\:scale-x-95 { + --tw-scale-x: .95; + } + + .lg\:scale-x-100 { + --tw-scale-x: 1; + } + + .lg\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .lg\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .lg\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .lg\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .lg\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .lg\:rotate-0 { + --tw-rotate: 0deg; + } + + .lg\:rotate-1 { + --tw-rotate: 1deg; + } + + .lg\:rotate-2 { + --tw-rotate: 2deg; + } + + .lg\:rotate-3 { + --tw-rotate: 3deg; + } + + .lg\:rotate-6 { + --tw-rotate: 6deg; + } + + .lg\:rotate-12 { + --tw-rotate: 12deg; + } + + .lg\:rotate-45 { + --tw-rotate: 45deg; + } + + .lg\:rotate-90 { + --tw-rotate: 90deg; + } + + .lg\:rotate-180 { + --tw-rotate: 180deg; + } + + .lg\:-rotate-180 { + --tw-rotate: -180deg; + } + + .lg\:-rotate-90 { + --tw-rotate: -90deg; + } + + .lg\:-rotate-45 { + --tw-rotate: -45deg; + } + + .lg\:-rotate-12 { + --tw-rotate: -12deg; + } + + .lg\:-rotate-6 { + --tw-rotate: -6deg; + } + + .lg\:-rotate-3 { + --tw-rotate: -3deg; + } + + .lg\:-rotate-2 { + --tw-rotate: -2deg; + } + + .lg\:-rotate-1 { + --tw-rotate: -1deg; + } + + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .lg\:translate-x-0 { + --tw-translate-x: 0px; + } + + .lg\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .lg\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .lg\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .lg\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .lg\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .lg\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .lg\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .lg\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .lg\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .lg\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .lg\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .lg\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .lg\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .lg\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .lg\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .lg\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .lg\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .lg\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .lg\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .lg\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .lg\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .lg\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .lg\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .lg\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .lg\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .lg\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .lg\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .lg\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .lg\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .lg\:translate-x-px { + --tw-translate-x: 1px; + } + + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .lg\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .lg\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .lg\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .lg\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .lg\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .lg\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .lg\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .lg\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .lg\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .lg\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .lg\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .lg\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .lg\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .lg\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .lg\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .lg\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .lg\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .lg\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .lg\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .lg\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .lg\:-translate-x-px { + --tw-translate-x: -1px; + } + + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .lg\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .lg\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .lg\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .lg\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .lg\:translate-x-full { + --tw-translate-x: 100%; + } + + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .lg\:-translate-x-full { + --tw-translate-x: -100%; + } + + .lg\:translate-y-0 { + --tw-translate-y: 0px; + } + + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .lg\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .lg\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .lg\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .lg\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .lg\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .lg\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .lg\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .lg\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .lg\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .lg\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .lg\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .lg\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .lg\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .lg\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .lg\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .lg\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .lg\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .lg\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .lg\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .lg\:translate-y-px { + --tw-translate-y: 1px; + } + + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .lg\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .lg\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .lg\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .lg\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .lg\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .lg\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .lg\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .lg\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .lg\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .lg\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .lg\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .lg\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .lg\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .lg\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .lg\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .lg\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .lg\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .lg\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .lg\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .lg\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .lg\:-translate-y-px { + --tw-translate-y: -1px; + } + + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .lg\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .lg\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .lg\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .lg\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .lg\:translate-y-full { + --tw-translate-y: 100%; + } + + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .lg\:-translate-y-full { + --tw-translate-y: -100%; + } + + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .lg\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .lg\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .lg\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .lg\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .lg\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .lg\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .lg\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .lg\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .lg\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .lg\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .lg\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .lg\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .lg\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .lg\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .lg\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .lg\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .lg\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .lg\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .lg\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .lg\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .lg\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .lg\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .lg\:transition-none { + transition-property: none; + } + + .lg\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:ease-linear { + transition-timing-function: linear; + } + + .lg\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .lg\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .lg\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .lg\:duration-75 { + transition-duration: 75ms; + } + + .lg\:duration-100 { + transition-duration: 100ms; + } + + .lg\:duration-150 { + transition-duration: 150ms; + } + + .lg\:duration-200 { + transition-duration: 200ms; + } + + .lg\:duration-300 { + transition-duration: 300ms; + } + + .lg\:duration-500 { + transition-duration: 500ms; + } + + .lg\:duration-700 { + transition-duration: 700ms; + } + + .lg\:duration-1000 { + transition-duration: 1000ms; + } + + .lg\:delay-75 { + transition-delay: 75ms; + } + + .lg\:delay-100 { + transition-delay: 100ms; + } + + .lg\:delay-150 { + transition-delay: 150ms; + } + + .lg\:delay-200 { + transition-delay: 200ms; + } + + .lg\:delay-300 { + transition-delay: 300ms; + } + + .lg\:delay-500 { + transition-delay: 500ms; + } + + .lg\:delay-700 { + transition-delay: 700ms; + } + + .lg\:delay-1000 { + transition-delay: 1000ms; + } + + .lg\:animate-none { + -webkit-animation: none; + animation: none; + } + + .lg\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .lg\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .lg\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .lg\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@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; + } + } + + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .xl\:bg-clip-padding { + background-clip: padding-box; + } + + .xl\:bg-clip-content { + background-clip: content-box; + } + + .xl\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .xl\:bg-current { + background-color: currentColor; + } + + .xl\:bg-transparent { + background-color: transparent; + } + + .xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-current:hover { + background-color: currentColor; + } + + .xl\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-current:focus { + background-color: currentColor; + } + + .xl\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-none { + background-image: none; + } + + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:to-current { + --tw-gradient-to: currentColor; + } + + .xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .xl\:to-black { + --tw-gradient-to: #000; + } + + .xl\:to-white { + --tw-gradient-to: #fff; + } + + .xl\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .xl\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .xl\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .xl\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .xl\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .xl\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .xl\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .xl\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .xl\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .xl\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .xl\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .xl\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .xl\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .xl\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .xl\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .xl\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .xl\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .xl\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .xl\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .xl\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .xl\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .xl\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .xl\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .xl\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .xl\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .xl\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .xl\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .xl\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .xl\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .xl\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .xl\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .xl\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .xl\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .xl\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .xl\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .xl\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .xl\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .xl\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .xl\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .xl\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .xl\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .xl\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .xl\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .xl\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .xl\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .xl\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .xl\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .xl\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .xl\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .xl\:to-green-900 { + --tw-gradient-to: #156633; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .xl\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .xl\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .xl\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .xl\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .xl\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .xl\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .xl\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .xl\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .xl\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .xl\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .xl\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .xl\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .xl\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .xl\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .xl\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .xl\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .xl\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .xl\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .xl\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .xl\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .xl\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .xl\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .xl\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .xl\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .xl\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .xl\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .xl\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .xl\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .xl\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .xl\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .xl\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .xl\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .xl\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .xl\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .xl\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .xl\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .xl\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .xl\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .xl\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .xl\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .xl\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .xl\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .xl\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .xl\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .xl\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .xl\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .xl\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .xl\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .xl\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .xl\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .xl\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .xl\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .xl\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .xl\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .xl\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .xl\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .xl\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .xl\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .xl\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .xl\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .xl\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .xl\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .xl\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .xl\:border-transparent { + border-color: transparent; + } + + .xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:hover\:border-current:hover { + border-color: currentColor; + } + + .xl\:hover\:border-transparent:hover { + border-color: transparent; + } + + .xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:focus\:border-current:focus { + border-color: currentColor; + } + + .xl\:focus\:border-transparent:focus { + border-color: transparent; + } + + .xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .xl\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .xl\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .xl\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .xl\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .xl\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .xl\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .xl\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .xl\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .xl\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .xl\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .xl\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .xl\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .xl\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .xl\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .xl\:rounded-none { + border-radius: 0; + } + + .xl\:rounded-sm { + border-radius: 0.125rem; + } + + .xl\:rounded { + border-radius: 0.25rem; + } + + .xl\:rounded-md { + border-radius: 0.375rem; + } + + .xl\:rounded-lg { + border-radius: 0.5rem; + } + + .xl\:rounded-xl { + border-radius: 0.675rem; + } + + .xl\:rounded-2xl { + border-radius: 0.75rem; + } + + .xl\:rounded-3xl { + border-radius: 0.875rem; + } + + .xl\:rounded-4xl { + border-radius: 1rem; + } + + .xl\:rounded-5xl { + border-radius: 1.25rem; + } + + .xl\:rounded-6xl { + border-radius: 1.375rem; + } + + .xl\:rounded-7xl { + border-radius: 1.5rem; + } + + .xl\:rounded-8xl { + border-radius: 2rem; + } + + .xl\:rounded-9xl { + border-radius: 2.25rem; + } + + .xl\:rounded-10xl { + border-radius: 2.5rem; + } + + .xl\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .xl\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .xl\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .xl\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .xl\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .xl\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .xl\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .xl\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .xl\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .xl\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .xl\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .xl\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .xl\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .xl\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .xl\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .xl\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .xl\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .xl\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .xl\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .xl\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .xl\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .xl\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .xl\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .xl\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .xl\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .xl\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .xl\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .xl\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .xl\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .xl\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .xl\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .xl\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .xl\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .xl\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .xl\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .xl\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .xl\:rounded-l-11xl { + 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: 0.125rem; + } + + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .xl\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .xl\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .xl\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .xl\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .xl\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .xl\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .xl\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .xl\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .xl\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .xl\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .xl\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .xl\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .xl\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .xl\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .xl\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .xl\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .xl\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .xl\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .xl\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .xl\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .xl\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .xl\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .xl\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .xl\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .xl\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .xl\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .xl\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .xl\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .xl\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .xl\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .xl\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .xl\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .xl\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .xl\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .xl\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .xl\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .xl\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .xl\:place-items-auto { + place-items: auto; + } + + .xl\:place-items-start { + place-items: start; + } + + .xl\:place-items-end { + place-items: end; + } + + .xl\:place-items-center { + place-items: center; + } + + .xl\:place-items-stretch { + place-items: stretch; + } + + .xl\:place-content-center { + place-content: center; + } + + .xl\:place-content-start { + place-content: start; + } + + .xl\:place-content-end { + place-content: end; + } + + .xl\:place-content-between { + place-content: space-between; + } + + .xl\:place-content-around { + place-content: space-around; + } + + .xl\:place-content-evenly { + place-content: space-evenly; + } + + .xl\:place-content-stretch { + place-content: stretch; + } + + .xl\:place-self-auto { + place-self: auto; + } + + .xl\:place-self-start { + place-self: start; + } + + .xl\:place-self-end { + place-self: end; + } + + .xl\:place-self-center { + place-self: center; + } + + .xl\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .xl\:justify-items-start { + justify-items: start; + } + + .xl\:justify-items-end { + justify-items: end; + } + + .xl\:justify-items-center { + justify-items: center; + } + + .xl\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .xl\:justify-self-start { + justify-self: start; + } + + .xl\:justify-self-end { + justify-self: end; + } + + .xl\:justify-self-center { + justify-self: center; + } + + .xl\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .xl\:clear-right { + clear: right; + } + + .xl\:clear-both { + clear: both; + } + + .xl\:clear-none { + clear: none; + } + + .xl\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .xl\:h-1 { + height: 0.25rem; + } + + .xl\:h-2 { + height: 0.5rem; + } + + .xl\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:h-1\.5 { + height: 0.375rem; + } + + .xl\:h-2\.5 { + height: 0.625rem; + } + + .xl\:h-3\.5 { + height: 0.875rem; + } + + .xl\:h-full { + height: 100%; + } + + .xl\:h-screen { + height: 100vh; + } + + .xl\:text-xxs { + font-size: 0.6875rem; + } + + .xl\:text-xs { + font-size: 0.75rem; + } + + .xl\:text-sm { + font-size: 0.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: 3.75rem; + } + + .xl\:text-7xl { + font-size: 4.5rem; + } + + .xl\:text-8xl { + font-size: 6rem; + } + + .xl\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .xl\:m-1 { + margin: 0.25rem; + } + + .xl\:m-2 { + margin: 0.5rem; + } + + .xl\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:m-1\.5 { + margin: 0.375rem; + } + + .xl\:m-2\.5 { + margin: 0.625rem; + } + + .xl\:m-3\.5 { + margin: 0.875rem; + } + + .xl\:-m-0 { + margin: 0px; + } + + .xl\:-m-1 { + margin: -0.25rem; + } + + .xl\:-m-2 { + margin: -0.5rem; + } + + .xl\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .xl\:-m-1\.5 { + margin: -0.375rem; + } + + .xl\:-m-2\.5 { + margin: -0.625rem; + } + + .xl\:-m-3\.5 { + margin: -0.875rem; + } + + .xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .xl\:mt-0 { + margin-top: 0px; + } + + .xl\:mr-0 { + margin-right: 0px; + } + + .xl\:mb-0 { + margin-bottom: 0px; + } + + .xl\:ml-0 { + margin-left: 0px; + } + + .xl\:mt-1 { + margin-top: 0.25rem; + } + + .xl\:mr-1 { + margin-right: 0.25rem; + } + + .xl\:mb-1 { + margin-bottom: 0.25rem; + } + + .xl\:ml-1 { + margin-left: 0.25rem; + } + + .xl\:mt-2 { + margin-top: 0.5rem; + } + + .xl\:mr-2 { + margin-right: 0.5rem; + } + + .xl\:mb-2 { + margin-bottom: 0.5rem; + } + + .xl\:ml-2 { + margin-left: 0.5rem; + } + + .xl\:mt-3 { + margin-top: 0.75rem; + } + + .xl\:mr-3 { + margin-right: 0.75rem; + } + + .xl\:mb-3 { + margin-bottom: 0.75rem; + } + + .xl\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .xl\:mr-0\.5 { + margin-right: 0.125rem; + } + + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .xl\:mt-1\.5 { + margin-top: 0.375rem; + } + + .xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .xl\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .xl\:mt-2\.5 { + margin-top: 0.625rem; + } + + .xl\:mr-2\.5 { + margin-right: 0.625rem; + } + + .xl\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .xl\:mt-3\.5 { + margin-top: 0.875rem; + } + + .xl\:mr-3\.5 { + margin-right: 0.875rem; + } + + .xl\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .xl\:-mt-0 { + margin-top: 0px; + } + + .xl\:-mr-0 { + margin-right: 0px; + } + + .xl\:-mb-0 { + margin-bottom: 0px; + } + + .xl\:-ml-0 { + margin-left: 0px; + } + + .xl\:-mt-1 { + margin-top: -0.25rem; + } + + .xl\:-mr-1 { + margin-right: -0.25rem; + } + + .xl\:-mb-1 { + margin-bottom: -0.25rem; + } + + .xl\:-ml-1 { + margin-left: -0.25rem; + } + + .xl\:-mt-2 { + margin-top: -0.5rem; + } + + .xl\:-mr-2 { + margin-right: -0.5rem; + } + + .xl\:-mb-2 { + margin-bottom: -0.5rem; + } + + .xl\:-ml-2 { + margin-left: -0.5rem; + } + + .xl\:-mt-3 { + margin-top: -0.75rem; + } + + .xl\:-mr-3 { + margin-right: -0.75rem; + } + + .xl\:-mb-3 { + margin-bottom: -0.75rem; + } + + .xl\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .xl\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .xl\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .xl\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .xl\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .xl\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .xl\:max-h-full { + max-height: 100%; + } + + .xl\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .xl\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .xl\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .xl\:opacity-10 { + opacity: 0.1; + } + + .xl\:opacity-20 { + opacity: 0.2; + } + + .xl\:opacity-25 { + opacity: 0.25; + } + + .xl\:opacity-30 { + opacity: 0.3; + } + + .xl\:opacity-40 { + opacity: 0.4; + } + + .xl\:opacity-50 { + opacity: 0.5; + } + + .xl\:opacity-60 { + opacity: 0.6; + } + + .xl\:opacity-70 { + opacity: 0.7; + } + + .xl\:opacity-75 { + opacity: 0.75; + } + + .xl\:opacity-80 { + opacity: 0.8; + } + + .xl\:opacity-90 { + opacity: 0.9; + } + + .xl\:opacity-95 { + opacity: 0.95; + } + + .xl\:opacity-100 { + opacity: 1; + } + + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1; + } + + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .xl\:hover\:opacity-0:hover { + opacity: 0; + } + + .xl\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .xl\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .xl\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .xl\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .xl\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .xl\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .xl\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .xl\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .xl\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .xl\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .xl\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .xl\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .xl\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .xl\:hover\:opacity-100:hover { + opacity: 1; + } + + .xl\:focus\:opacity-0:focus { + opacity: 0; + } + + .xl\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .xl\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .xl\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .xl\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .xl\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .xl\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .xl\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .xl\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .xl\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .xl\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .xl\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .xl\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .xl\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .xl\:focus\:opacity-100:focus { + opacity: 1; + } + + .xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .xl\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .xl\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .xl\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .xl\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .xl\:p-0 { + padding: 0px; + } + + .xl\:p-1 { + padding: 0.25rem; + } + + .xl\:p-2 { + padding: 0.5rem; + } + + .xl\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:p-1\.5 { + padding: 0.375rem; + } + + .xl\:p-2\.5 { + padding: 0.625rem; + } + + .xl\:p-3\.5 { + padding: 0.875rem; + } + + .xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .xl\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .xl\:pt-0 { + padding-top: 0px; + } + + .xl\:pr-0 { + padding-right: 0px; + } + + .xl\:pb-0 { + padding-bottom: 0px; + } + + .xl\:pl-0 { + padding-left: 0px; + } + + .xl\:pt-1 { + padding-top: 0.25rem; + } + + .xl\:pr-1 { + padding-right: 0.25rem; + } + + .xl\:pb-1 { + padding-bottom: 0.25rem; + } + + .xl\:pl-1 { + padding-left: 0.25rem; + } + + .xl\:pt-2 { + padding-top: 0.5rem; + } + + .xl\:pr-2 { + padding-right: 0.5rem; + } + + .xl\:pb-2 { + padding-bottom: 0.5rem; + } + + .xl\:pl-2 { + padding-left: 0.5rem; + } + + .xl\:pt-3 { + padding-top: 0.75rem; + } + + .xl\:pr-3 { + padding-right: 0.75rem; + } + + .xl\:pb-3 { + padding-bottom: 0.75rem; + } + + .xl\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .xl\:pr-0\.5 { + padding-right: 0.125rem; + } + + .xl\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .xl\:pl-0\.5 { + padding-left: 0.125rem; + } + + .xl\:pt-1\.5 { + padding-top: 0.375rem; + } + + .xl\:pr-1\.5 { + padding-right: 0.375rem; + } + + .xl\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .xl\:pl-1\.5 { + padding-left: 0.375rem; + } + + .xl\:pt-2\.5 { + padding-top: 0.625rem; + } + + .xl\:pr-2\.5 { + padding-right: 0.625rem; + } + + .xl\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .xl\:pl-2\.5 { + padding-left: 0.625rem; + } + + .xl\:pt-3\.5 { + padding-top: 0.875rem; + } + + .xl\:pr-3\.5 { + padding-right: 0.875rem; + } + + .xl\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .xl\:pl-3\.5 { + padding-left: 0.875rem; + } + + .xl\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .xl\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .xl\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .xl\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .xl\:placeholder-current::placeholder { + color: currentColor; + } + + .xl\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .xl\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .xl\:inset-x-0 { + right: 0px; + left: 0px; + } + + .xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .xl\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .xl\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .xl\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .xl\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .xl\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .xl\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .xl\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .xl\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .xl\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .xl\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .xl\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .xl\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .xl\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .xl\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .xl\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .xl\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .xl\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .xl\:-inset-x-px { + right: -1px; + left: -1px; + } + + .xl\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .xl\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .xl\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .xl\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .xl\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .xl\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .xl\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .xl\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .xl\:-inset-x-full { + right: -100%; + left: -100%; + } + + .xl\:top-0 { + top: 0px; + } + + .xl\:right-0 { + right: 0px; + } + + .xl\:bottom-0 { + bottom: 0px; + } + + .xl\:left-0 { + left: 0px; + } + + .xl\:top-1 { + top: 0.25rem; + } + + .xl\:right-1 { + right: 0.25rem; + } + + .xl\:bottom-1 { + bottom: 0.25rem; + } + + .xl\:left-1 { + left: 0.25rem; + } + + .xl\:top-2 { + top: 0.5rem; + } + + .xl\:right-2 { + right: 0.5rem; + } + + .xl\:bottom-2 { + bottom: 0.5rem; + } + + .xl\:left-2 { + left: 0.5rem; + } + + .xl\:top-3 { + top: 0.75rem; + } + + .xl\:right-3 { + right: 0.75rem; + } + + .xl\:bottom-3 { + bottom: 0.75rem; + } + + .xl\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .xl\:right-14 { + right: 3.5rem; + } + + .xl\:bottom-14 { + bottom: 3.5rem; + } + + .xl\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:right-0\.5 { + right: 0.125rem; + } + + .xl\:bottom-0\.5 { + bottom: 0.125rem; + } + + .xl\:left-0\.5 { + left: 0.125rem; + } + + .xl\:top-1\.5 { + top: 0.375rem; + } + + .xl\:right-1\.5 { + right: 0.375rem; + } + + .xl\:bottom-1\.5 { + bottom: 0.375rem; + } + + .xl\:left-1\.5 { + left: 0.375rem; + } + + .xl\:top-2\.5 { + top: 0.625rem; + } + + .xl\:right-2\.5 { + right: 0.625rem; + } + + .xl\:bottom-2\.5 { + bottom: 0.625rem; + } + + .xl\:left-2\.5 { + left: 0.625rem; + } + + .xl\:top-3\.5 { + top: 0.875rem; + } + + .xl\:right-3\.5 { + right: 0.875rem; + } + + .xl\:bottom-3\.5 { + bottom: 0.875rem; + } + + .xl\:left-3\.5 { + left: 0.875rem; + } + + .xl\:-top-0 { + top: 0px; + } + + .xl\:-right-0 { + right: 0px; + } + + .xl\:-bottom-0 { + bottom: 0px; + } + + .xl\:-left-0 { + left: 0px; + } + + .xl\:-top-1 { + top: -0.25rem; + } + + .xl\:-right-1 { + right: -0.25rem; + } + + .xl\:-bottom-1 { + bottom: -0.25rem; + } + + .xl\:-left-1 { + left: -0.25rem; + } + + .xl\:-top-2 { + top: -0.5rem; + } + + .xl\:-right-2 { + right: -0.5rem; + } + + .xl\:-bottom-2 { + bottom: -0.5rem; + } + + .xl\:-left-2 { + left: -0.5rem; + } + + .xl\:-top-3 { + top: -0.75rem; + } + + .xl\:-right-3 { + right: -0.75rem; + } + + .xl\:-bottom-3 { + bottom: -0.75rem; + } + + .xl\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .xl\:-right-14 { + right: -3.5rem; + } + + .xl\:-bottom-14 { + bottom: -3.5rem; + } + + .xl\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .xl\:-right-px { + right: -1px; + } + + .xl\:-bottom-px { + bottom: -1px; + } + + .xl\:-left-px { + left: -1px; + } + + .xl\:-top-0\.5 { + top: -0.125rem; + } + + .xl\:-right-0\.5 { + right: -0.125rem; + } + + .xl\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .xl\:-left-0\.5 { + left: -0.125rem; + } + + .xl\:-top-1\.5 { + top: -0.375rem; + } + + .xl\:-right-1\.5 { + right: -0.375rem; + } + + .xl\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .xl\:-left-1\.5 { + left: -0.375rem; + } + + .xl\:-top-2\.5 { + top: -0.625rem; + } + + .xl\:-right-2\.5 { + right: -0.625rem; + } + + .xl\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .xl\:-left-2\.5 { + left: -0.625rem; + } + + .xl\:-top-3\.5 { + top: -0.875rem; + } + + .xl\:-right-3\.5 { + right: -0.875rem; + } + + .xl\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .xl\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .xl\:right-full { + right: 100%; + } + + .xl\:bottom-full { + bottom: 100%; + } + + .xl\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-inset { + --tw-ring-inset: inset; + } + + .xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .xl\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .xl\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .xl\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .xl\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .xl\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .xl\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .xl\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .xl\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .xl\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .xl\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .xl\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .xl\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .xl\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .xl\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .xl\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .xl\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .xl\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .xl\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .xl\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .xl\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .xl\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .xl\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .xl\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .xl\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .xl\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .xl\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .xl\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .xl\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .xl\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .xl\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .xl\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .xl\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .xl\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .xl\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .xl\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .xl\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .xl\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .xl\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .xl\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .xl\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .xl\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .xl\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .xl\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .xl\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .xl\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .xl\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .xl\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .xl\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .xl\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .xl\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .xl\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .xl\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .xl\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .xl\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .xl\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .xl\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .xl\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .xl\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .xl\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .xl\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .xl\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .xl\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .xl\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .xl\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .xl\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .xl\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .xl\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .xl\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .xl\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .xl\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .xl\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .xl\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .xl\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .xl\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .xl\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .xl\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .xl\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .xl\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .xl\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .xl\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .xl\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .xl\:ring-current { + --tw-ring-color: currentColor; + } + + .xl\:ring-transparent { + --tw-ring-color: transparent; + } + + .xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .xl\:text-transparent { + color: transparent; + } + + .xl\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .xl\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .xl\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .xl\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .xl\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:hover\:text-current:hover { + color: currentColor; + } + + .xl\:hover\:text-transparent:hover { + color: transparent; + } + + .xl\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus\:text-current:focus { + color: currentColor; + } + + .xl\:focus\:text-transparent:focus { + color: transparent; + } + + .xl\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .xl\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .xl\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .xl\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .xl\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .xl\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .xl\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .xl\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .xl\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .xl\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .xl\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .xl\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .xl\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .xl\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .xl\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .xl\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .xl\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .xl\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .xl\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .xl\:focus-within\:no-underline:focus-within { + 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\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .xl\:normal-nums { + font-variant-numeric: normal; + } + + .xl\:ordinal { + --tw-ordinal: ordinal; + } + + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .xl\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .xl\:tracking-tighter { + letter-spacing: -0.02em; + } + + .xl\:tracking-tight { + letter-spacing: -1px; + } + + .xl\:tracking-normal { + letter-spacing: 0em; + } + + .xl\:tracking-wide { + letter-spacing: 0.03em; + } + + .xl\:tracking-wider { + letter-spacing: 0.08em; + } + + .xl\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .xl\:w-1 { + width: 0.25rem; + } + + .xl\:w-2 { + width: 0.5rem; + } + + .xl\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:w-1\.5 { + width: 0.375rem; + } + + .xl\:w-2\.5 { + width: 0.625rem; + } + + .xl\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .xl\:gap-1 { + gap: 0.25rem; + } + + .xl\:gap-2 { + gap: 0.5rem; + } + + .xl\:gap-3 { + gap: 0.75rem; + } + + .xl\:gap-4 { + gap: 1rem; + } + + .xl\:gap-5 { + gap: 1.25rem; + } + + .xl\:gap-6 { + gap: 1.5rem; + } + + .xl\:gap-7 { + gap: 1.75rem; + } + + .xl\:gap-8 { + gap: 2rem; + } + + .xl\:gap-9 { + gap: 2.25rem; + } + + .xl\:gap-10 { + gap: 2.5rem; + } + + .xl\:gap-11 { + gap: 2.75rem; + } + + .xl\:gap-12 { + gap: 3rem; + } + + .xl\:gap-14 { + gap: 3.5rem; + } + + .xl\:gap-16 { + gap: 4rem; + } + + .xl\:gap-20 { + gap: 5rem; + } + + .xl\:gap-24 { + gap: 6rem; + } + + .xl\:gap-28 { + gap: 7rem; + } + + .xl\:gap-32 { + gap: 8rem; + } + + .xl\:gap-36 { + gap: 9rem; + } + + .xl\:gap-40 { + gap: 10rem; + } + + .xl\:gap-44 { + gap: 11rem; + } + + .xl\:gap-48 { + gap: 12rem; + } + + .xl\:gap-52 { + gap: 13rem; + } + + .xl\:gap-56 { + gap: 14rem; + } + + .xl\:gap-60 { + gap: 15rem; + } + + .xl\:gap-64 { + gap: 16rem; + } + + .xl\:gap-72 { + gap: 18rem; + } + + .xl\:gap-80 { + gap: 20rem; + } + + .xl\:gap-96 { + gap: 24rem; + } + + .xl\:gap-px { + gap: 1px; + } + + .xl\:gap-0\.5 { + gap: 0.125rem; + } + + .xl\:gap-1\.5 { + gap: 0.375rem; + } + + .xl\:gap-2\.5 { + gap: 0.625rem; + } + + .xl\:gap-3\.5 { + gap: 0.875rem; + } + + .xl\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .xl\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .xl\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .xl\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .xl\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .xl\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .xl\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .xl\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .xl\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .xl\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .xl\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .xl\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .xl\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .xl\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .xl\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .xl\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .xl\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .xl\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .xl\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .xl\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .xl\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .xl\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .xl\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .xl\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .xl\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .xl\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .xl\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .xl\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .xl\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .xl\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .xl\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .xl\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .xl\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .xl\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .xl\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .xl\:gap-y-0 { + row-gap: 0px; + } + + .xl\:gap-y-1 { + row-gap: 0.25rem; + } + + .xl\:gap-y-2 { + row-gap: 0.5rem; + } + + .xl\:gap-y-3 { + row-gap: 0.75rem; + } + + .xl\:gap-y-4 { + row-gap: 1rem; + } + + .xl\:gap-y-5 { + row-gap: 1.25rem; + } + + .xl\:gap-y-6 { + row-gap: 1.5rem; + } + + .xl\:gap-y-7 { + row-gap: 1.75rem; + } + + .xl\:gap-y-8 { + row-gap: 2rem; + } + + .xl\:gap-y-9 { + row-gap: 2.25rem; + } + + .xl\:gap-y-10 { + row-gap: 2.5rem; + } + + .xl\:gap-y-11 { + row-gap: 2.75rem; + } + + .xl\:gap-y-12 { + row-gap: 3rem; + } + + .xl\:gap-y-14 { + row-gap: 3.5rem; + } + + .xl\:gap-y-16 { + row-gap: 4rem; + } + + .xl\:gap-y-20 { + row-gap: 5rem; + } + + .xl\:gap-y-24 { + row-gap: 6rem; + } + + .xl\:gap-y-28 { + row-gap: 7rem; + } + + .xl\:gap-y-32 { + row-gap: 8rem; + } + + .xl\:gap-y-36 { + row-gap: 9rem; + } + + .xl\:gap-y-40 { + row-gap: 10rem; + } + + .xl\:gap-y-44 { + row-gap: 11rem; + } + + .xl\:gap-y-48 { + row-gap: 12rem; + } + + .xl\:gap-y-52 { + row-gap: 13rem; + } + + .xl\:gap-y-56 { + row-gap: 14rem; + } + + .xl\:gap-y-60 { + row-gap: 15rem; + } + + .xl\:gap-y-64 { + row-gap: 16rem; + } + + .xl\:gap-y-72 { + row-gap: 18rem; + } + + .xl\:gap-y-80 { + row-gap: 20rem; + } + + .xl\:gap-y-96 { + row-gap: 24rem; + } + + .xl\:gap-y-px { + row-gap: 1px; + } + + .xl\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .xl\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .xl\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .xl\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .xl\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .xl\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .xl\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .xl\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .xl\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:scale-x-0 { + --tw-scale-x: 0; + } + + .xl\:scale-x-50 { + --tw-scale-x: .5; + } + + .xl\:scale-x-75 { + --tw-scale-x: .75; + } + + .xl\:scale-x-90 { + --tw-scale-x: .9; + } + + .xl\:scale-x-95 { + --tw-scale-x: .95; + } + + .xl\:scale-x-100 { + --tw-scale-x: 1; + } + + .xl\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .xl\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .xl\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .xl\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .xl\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .xl\:rotate-0 { + --tw-rotate: 0deg; + } + + .xl\:rotate-1 { + --tw-rotate: 1deg; + } + + .xl\:rotate-2 { + --tw-rotate: 2deg; + } + + .xl\:rotate-3 { + --tw-rotate: 3deg; + } + + .xl\:rotate-6 { + --tw-rotate: 6deg; + } + + .xl\:rotate-12 { + --tw-rotate: 12deg; + } + + .xl\:rotate-45 { + --tw-rotate: 45deg; + } + + .xl\:rotate-90 { + --tw-rotate: 90deg; + } + + .xl\:rotate-180 { + --tw-rotate: 180deg; + } + + .xl\:-rotate-180 { + --tw-rotate: -180deg; + } + + .xl\:-rotate-90 { + --tw-rotate: -90deg; + } + + .xl\:-rotate-45 { + --tw-rotate: -45deg; + } + + .xl\:-rotate-12 { + --tw-rotate: -12deg; + } + + .xl\:-rotate-6 { + --tw-rotate: -6deg; + } + + .xl\:-rotate-3 { + --tw-rotate: -3deg; + } + + .xl\:-rotate-2 { + --tw-rotate: -2deg; + } + + .xl\:-rotate-1 { + --tw-rotate: -1deg; + } + + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .xl\:translate-x-0 { + --tw-translate-x: 0px; + } + + .xl\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .xl\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .xl\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .xl\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .xl\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .xl\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .xl\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .xl\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .xl\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .xl\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .xl\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .xl\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .xl\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .xl\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .xl\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .xl\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .xl\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .xl\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .xl\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .xl\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .xl\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .xl\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .xl\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .xl\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .xl\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .xl\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .xl\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .xl\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .xl\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .xl\:translate-x-px { + --tw-translate-x: 1px; + } + + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .xl\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .xl\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .xl\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .xl\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .xl\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .xl\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .xl\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .xl\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .xl\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .xl\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .xl\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .xl\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .xl\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .xl\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .xl\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .xl\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .xl\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .xl\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .xl\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .xl\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .xl\:-translate-x-px { + --tw-translate-x: -1px; + } + + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .xl\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .xl\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .xl\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .xl\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .xl\:translate-x-full { + --tw-translate-x: 100%; + } + + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .xl\:-translate-x-full { + --tw-translate-x: -100%; + } + + .xl\:translate-y-0 { + --tw-translate-y: 0px; + } + + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .xl\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .xl\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .xl\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .xl\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .xl\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .xl\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .xl\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .xl\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .xl\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .xl\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .xl\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .xl\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .xl\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .xl\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .xl\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .xl\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .xl\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .xl\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .xl\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .xl\:translate-y-px { + --tw-translate-y: 1px; + } + + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .xl\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .xl\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .xl\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .xl\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .xl\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .xl\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .xl\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .xl\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .xl\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .xl\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .xl\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .xl\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .xl\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .xl\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .xl\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .xl\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .xl\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .xl\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .xl\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .xl\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .xl\:-translate-y-px { + --tw-translate-y: -1px; + } + + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .xl\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .xl\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .xl\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .xl\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .xl\:translate-y-full { + --tw-translate-y: 100%; + } + + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .xl\:-translate-y-full { + --tw-translate-y: -100%; + } + + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .xl\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .xl\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .xl\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .xl\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .xl\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .xl\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .xl\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .xl\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .xl\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .xl\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .xl\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .xl\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .xl\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .xl\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .xl\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .xl\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .xl\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .xl\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .xl\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .xl\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .xl\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .xl\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .xl\:transition-none { + transition-property: none; + } + + .xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:ease-linear { + transition-timing-function: linear; + } + + .xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .xl\:duration-75 { + transition-duration: 75ms; + } + + .xl\:duration-100 { + transition-duration: 100ms; + } + + .xl\:duration-150 { + transition-duration: 150ms; + } + + .xl\:duration-200 { + transition-duration: 200ms; + } + + .xl\:duration-300 { + transition-duration: 300ms; + } + + .xl\:duration-500 { + transition-duration: 500ms; + } + + .xl\:duration-700 { + transition-duration: 700ms; + } + + .xl\:duration-1000 { + transition-duration: 1000ms; + } + + .xl\:delay-75 { + transition-delay: 75ms; + } + + .xl\:delay-100 { + transition-delay: 100ms; + } + + .xl\:delay-150 { + transition-delay: 150ms; + } + + .xl\:delay-200 { + transition-delay: 200ms; + } + + .xl\:delay-300 { + transition-delay: 300ms; + } + + .xl\:delay-500 { + transition-delay: 500ms; + } + + .xl\:delay-700 { + transition-delay: 700ms; + } + + .xl\:delay-1000 { + transition-delay: 1000ms; + } + + .xl\:animate-none { + -webkit-animation: none; + animation: none; + } + + .xl\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .xl\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .xl\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .xl\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + } + + .\32xl\: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; + } + + .\32xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\: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; + } + + .\32xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .\32xl\:bg-fixed { + background-attachment: fixed; + } + + .\32xl\:bg-local { + background-attachment: local; + } + + .\32xl\:bg-scroll { + background-attachment: scroll; + } + + .\32xl\:bg-clip-border { + background-clip: border-box; + } + + .\32xl\:bg-clip-padding { + background-clip: padding-box; + } + + .\32xl\:bg-clip-content { + background-clip: content-box; + } + + .\32xl\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .\32xl\:bg-current { + background-color: currentColor; + } + + .\32xl\:bg-transparent { + background-color: transparent; + } + + .\32xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .\32xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .\32xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-current:hover { + background-color: currentColor; + } + + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .\32xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-current:focus { + background-color: currentColor; + } + + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .\32xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-none { + background-image: none; + } + + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .\32xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor; + } + + .\32xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .\32xl\:to-black { + --tw-gradient-to: #000; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff; + } + + .\32xl\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .\32xl\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .\32xl\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .\32xl\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .\32xl\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .\32xl\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .\32xl\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .\32xl\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .\32xl\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .\32xl\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .\32xl\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .\32xl\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .\32xl\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .\32xl\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .\32xl\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .\32xl\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .\32xl\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .\32xl\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .\32xl\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .\32xl\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .\32xl\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .\32xl\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .\32xl\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .\32xl\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .\32xl\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .\32xl\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .\32xl\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .\32xl\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .\32xl\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .\32xl\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #156633; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .\32xl\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .\32xl\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .\32xl\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .\32xl\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .\32xl\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .\32xl\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .\32xl\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .\32xl\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .\32xl\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .\32xl\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .\32xl\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .\32xl\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .\32xl\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .\32xl\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .\32xl\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .\32xl\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .\32xl\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .\32xl\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .\32xl\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .\32xl\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .\32xl\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .\32xl\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .\32xl\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .\32xl\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .\32xl\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .\32xl\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .\32xl\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .\32xl\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .\32xl\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .\32xl\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .\32xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .\32xl\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .\32xl\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .\32xl\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .\32xl\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .\32xl\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .\32xl\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .\32xl\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .\32xl\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .\32xl\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .\32xl\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .\32xl\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .\32xl\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .\32xl\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .\32xl\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .\32xl\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .\32xl\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .\32xl\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .\32xl\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .\32xl\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .\32xl\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .\32xl\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .\32xl\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .\32xl\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .\32xl\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .\32xl\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .\32xl\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .\32xl\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .\32xl\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .\32xl\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .\32xl\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .\32xl\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .\32xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .\32xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .\32xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .\32xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .\32xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .\32xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .\32xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .\32xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .\32xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .\32xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .\32xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .\32xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .\32xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .\32xl\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .\32xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .\32xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .\32xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .\32xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .\32xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .\32xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .\32xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .\32xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .\32xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .\32xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .\32xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .\32xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .\32xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .\32xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .\32xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .\32xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .\32xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .\32xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .\32xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .\32xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .\32xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .\32xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .\32xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .\32xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .\32xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .\32xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .\32xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .\32xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .\32xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .\32xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .\32xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .\32xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .\32xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .\32xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .\32xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .\32xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .\32xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .\32xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .\32xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .\32xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .\32xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .\32xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .\32xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .\32xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .\32xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; + } + + .\32xl\:bg-bottom { + background-position: bottom; + } + + .\32xl\:bg-center { + background-position: center; + } + + .\32xl\:bg-left { + background-position: left; + } + + .\32xl\:bg-left-bottom { + background-position: left bottom; + } + + .\32xl\:bg-left-top { + background-position: left top; + } + + .\32xl\:bg-right { + background-position: right; + } + + .\32xl\:bg-right-bottom { + background-position: right bottom; + } + + .\32xl\:bg-right-top { + background-position: right top; + } + + .\32xl\:bg-top { + background-position: top; + } + + .\32xl\:bg-repeat { + background-repeat: repeat; + } + + .\32xl\:bg-no-repeat { + background-repeat: no-repeat; + } + + .\32xl\:bg-repeat-x { + background-repeat: repeat-x; + } + + .\32xl\:bg-repeat-y { + background-repeat: repeat-y; + } + + .\32xl\:bg-repeat-round { + background-repeat: round; + } + + .\32xl\:bg-repeat-space { + background-repeat: space; + } + + .\32xl\:bg-auto { + background-size: auto; + } + + .\32xl\:bg-cover { + background-size: cover; + } + + .\32xl\:bg-contain { + background-size: contain; + } + + .\32xl\:border-collapse { + border-collapse: collapse; + } + + .\32xl\:border-separate { + border-collapse: separate; + } + + .\32xl\:border-current { + border-color: currentColor; + } + + .\32xl\:border-transparent { + border-color: transparent; + } + + .\32xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .\32xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .\32xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-current:hover { + border-color: currentColor; + } + + .\32xl\:hover\:border-transparent:hover { + border-color: transparent; + } + + .\32xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-current:focus { + border-color: currentColor; + } + + .\32xl\:focus\:border-transparent:focus { + border-color: transparent; + } + + .\32xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .\32xl\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .\32xl\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .\32xl\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .\32xl\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .\32xl\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .\32xl\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .\32xl\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .\32xl\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .\32xl\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .\32xl\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .\32xl\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .\32xl\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .\32xl\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .\32xl\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .\32xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .\32xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .\32xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .\32xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .\32xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .\32xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .\32xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .\32xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .\32xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .\32xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .\32xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .\32xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .\32xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .\32xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .\32xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .\32xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .\32xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .\32xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .\32xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .\32xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .\32xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .\32xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .\32xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .\32xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .\32xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .\32xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .\32xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .\32xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .\32xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .\32xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .\32xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .\32xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .\32xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .\32xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .\32xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .\32xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .\32xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .\32xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .\32xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .\32xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .\32xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .\32xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .\32xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .\32xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .\32xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .\32xl\:rounded-none { + border-radius: 0; + } + + .\32xl\:rounded-sm { + border-radius: 0.125rem; + } + + .\32xl\:rounded { + border-radius: 0.25rem; + } + + .\32xl\:rounded-md { + border-radius: 0.375rem; + } + + .\32xl\:rounded-lg { + border-radius: 0.5rem; + } + + .\32xl\:rounded-xl { + border-radius: 0.675rem; + } + + .\32xl\:rounded-2xl { + border-radius: 0.75rem; + } + + .\32xl\:rounded-3xl { + border-radius: 0.875rem; + } + + .\32xl\:rounded-4xl { + border-radius: 1rem; + } + + .\32xl\:rounded-5xl { + border-radius: 1.25rem; + } + + .\32xl\:rounded-6xl { + border-radius: 1.375rem; + } + + .\32xl\:rounded-7xl { + border-radius: 1.5rem; + } + + .\32xl\:rounded-8xl { + border-radius: 2rem; + } + + .\32xl\:rounded-9xl { + border-radius: 2.25rem; + } + + .\32xl\:rounded-10xl { + border-radius: 2.5rem; + } + + .\32xl\:rounded-11xl { + border-radius: 5rem; + } + + .\32xl\:rounded-full { + border-radius: 9999px; + } + + .\32xl\:rounded-t-none { + border-top-left-radius: 0; + border-top-right-radius: 0; + } + + .\32xl\:rounded-r-none { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + } + + .\32xl\:rounded-l-none { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .\32xl\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .\32xl\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .\32xl\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .\32xl\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .\32xl\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .\32xl\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .\32xl\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .\32xl\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .\32xl\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .\32xl\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .\32xl\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .\32xl\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .\32xl\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .\32xl\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .\32xl\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .\32xl\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .\32xl\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .\32xl\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .\32xl\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .\32xl\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .\32xl\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .\32xl\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .\32xl\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .\32xl\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .\32xl\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .\32xl\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .\32xl\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .\32xl\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .\32xl\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .\32xl\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .\32xl\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .\32xl\:rounded-l-11xl { + border-top-left-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .\32xl\:rounded-tl-none { + border-top-left-radius: 0; + } + + .\32xl\:rounded-tr-none { + border-top-right-radius: 0; + } + + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0; + } + + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0; + } + + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; + } + + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .\32xl\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .\32xl\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .\32xl\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .\32xl\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .\32xl\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .\32xl\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .\32xl\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .\32xl\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .\32xl\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .\32xl\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .\32xl\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .\32xl\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .\32xl\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .\32xl\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .\32xl\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .\32xl\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .\32xl\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .\32xl\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .\32xl\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .\32xl\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .\32xl\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .\32xl\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .\32xl\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .\32xl\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .\32xl\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .\32xl\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .\32xl\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .\32xl\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .\32xl\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .\32xl\:rounded-bl-11xl { + border-bottom-left-radius: 5rem; + } + + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px; + } + + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .\32xl\:border-solid { + border-style: solid; + } + + .\32xl\:border-dashed { + border-style: dashed; + } + + .\32xl\:border-dotted { + border-style: dotted; + } + + .\32xl\:border-double { + border-style: double; + } + + .\32xl\:border-none { + border-style: none; + } + + .\32xl\:border-0 { + border-width: 0; + } + + .\32xl\:border-2 { + border-width: 2px; + } + + .\32xl\:border-4 { + border-width: 4px; + } + + .\32xl\:border-8 { + border-width: 8px; + } + + .\32xl\:border { + border-width: 1px; + } + + .\32xl\:border-t-0 { + border-top-width: 0; + } + + .\32xl\:border-r-0 { + border-right-width: 0; + } + + .\32xl\:border-b-0 { + border-bottom-width: 0; + } + + .\32xl\:border-l-0 { + border-left-width: 0; + } + + .\32xl\:border-t-2 { + border-top-width: 2px; + } + + .\32xl\:border-r-2 { + border-right-width: 2px; + } + + .\32xl\:border-b-2 { + border-bottom-width: 2px; + } + + .\32xl\:border-l-2 { + border-left-width: 2px; + } + + .\32xl\:border-t-4 { + border-top-width: 4px; + } + + .\32xl\:border-r-4 { + border-right-width: 4px; + } + + .\32xl\:border-b-4 { + border-bottom-width: 4px; + } + + .\32xl\:border-l-4 { + border-left-width: 4px; + } + + .\32xl\:border-t-8 { + border-top-width: 8px; + } + + .\32xl\:border-r-8 { + border-right-width: 8px; + } + + .\32xl\:border-b-8 { + border-bottom-width: 8px; + } + + .\32xl\:border-l-8 { + border-left-width: 8px; + } + + .\32xl\:border-t { + border-top-width: 1px; + } + + .\32xl\:border-r { + border-right-width: 1px; + } + + .\32xl\:border-b { + border-bottom-width: 1px; + } + + .\32xl\:border-l { + border-left-width: 1px; + } + + .\32xl\:box-border { + box-sizing: border-box; + } + + .\32xl\:box-content { + box-sizing: content-box; + } + + .\32xl\:cursor-auto { + cursor: auto; + } + + .\32xl\:cursor { + cursor: default; + } + + .\32xl\:cursor-pointer { + cursor: pointer; + } + + .\32xl\:cursor-wait { + cursor: wait; + } + + .\32xl\:cursor-text { + cursor: text; + } + + .\32xl\:cursor-move { + cursor: move; + } + + .\32xl\:cursor-not-allowed { + cursor: not-allowed; + } + + .\32xl\:block { + display: block; + } + + .\32xl\:inline-block { + display: inline-block; + } + + .\32xl\:inline { + display: inline; + } + + .\32xl\:flex { + display: flex; + } + + .\32xl\:inline-flex { + display: inline-flex; + } + + .\32xl\:table { + display: table; + } + + .\32xl\:table-caption { + display: table-caption; + } + + .\32xl\:table-cell { + display: table-cell; + } + + .\32xl\:table-column { + display: table-column; + } + + .\32xl\:table-column-group { + display: table-column-group; + } + + .\32xl\:table-footer-group { + display: table-footer-group; + } + + .\32xl\:table-header-group { + display: table-header-group; + } + + .\32xl\:table-row-group { + display: table-row-group; + } + + .\32xl\:table-row { + display: table-row; + } + + .\32xl\:flow-root { + display: flow-root; + } + + .\32xl\:grid { + display: grid; + } + + .\32xl\:inline-grid { + display: inline-grid; + } + + .\32xl\:contents { + display: contents; + } + + .\32xl\:hidden { + display: none; + } + + .\32xl\:flex-row { + flex-direction: row; + } + + .\32xl\:flex-row-reverse { + flex-direction: row-reverse; + } + + .\32xl\:flex-col { + flex-direction: column; + } + + .\32xl\:flex-col-reverse { + flex-direction: column-reverse; + } + + .\32xl\:flex-wrap { + flex-wrap: wrap; + } + + .\32xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .\32xl\:flex-nowrap { + flex-wrap: nowrap; + } + + .\32xl\:place-items-auto { + place-items: auto; + } + + .\32xl\:place-items-start { + place-items: start; + } + + .\32xl\:place-items-end { + place-items: end; + } + + .\32xl\:place-items-center { + place-items: center; + } + + .\32xl\:place-items-stretch { + place-items: stretch; + } + + .\32xl\:place-content-center { + place-content: center; + } + + .\32xl\:place-content-start { + place-content: start; + } + + .\32xl\:place-content-end { + place-content: end; + } + + .\32xl\:place-content-between { + place-content: space-between; + } + + .\32xl\:place-content-around { + place-content: space-around; + } + + .\32xl\:place-content-evenly { + place-content: space-evenly; + } + + .\32xl\:place-content-stretch { + place-content: stretch; + } + + .\32xl\:place-self-auto { + place-self: auto; + } + + .\32xl\:place-self-start { + place-self: start; + } + + .\32xl\:place-self-end { + place-self: end; + } + + .\32xl\:place-self-center { + place-self: center; + } + + .\32xl\:place-self-stretch { + place-self: stretch; + } + + .\32xl\:items-start { + align-items: flex-start; + } + + .\32xl\:items-end { + align-items: flex-end; + } + + .\32xl\:items-center { + align-items: center; + } + + .\32xl\:items-baseline { + align-items: baseline; + } + + .\32xl\:items-stretch { + align-items: stretch; + } + + .\32xl\:content-center { + align-content: center; + } + + .\32xl\:content-start { + align-content: flex-start; + } + + .\32xl\:content-end { + align-content: flex-end; + } + + .\32xl\:content-between { + align-content: space-between; + } + + .\32xl\:content-around { + align-content: space-around; + } + + .\32xl\:content-evenly { + align-content: space-evenly; + } + + .\32xl\:self-auto { + align-self: auto; + } + + .\32xl\:self-start { + align-self: flex-start; + } + + .\32xl\:self-end { + align-self: flex-end; + } + + .\32xl\:self-center { + align-self: center; + } + + .\32xl\:self-stretch { + align-self: stretch; + } + + .\32xl\:justify-items-auto { + justify-items: auto; + } + + .\32xl\:justify-items-start { + justify-items: start; + } + + .\32xl\:justify-items-end { + justify-items: end; + } + + .\32xl\:justify-items-center { + justify-items: center; + } + + .\32xl\:justify-items-stretch { + justify-items: stretch; + } + + .\32xl\:justify-start { + justify-content: flex-start; + } + + .\32xl\:justify-end { + justify-content: flex-end; + } + + .\32xl\:justify-center { + justify-content: center; + } + + .\32xl\:justify-between { + justify-content: space-between; + } + + .\32xl\:justify-around { + justify-content: space-around; + } + + .\32xl\:justify-evenly { + justify-content: space-evenly; + } + + .\32xl\:justify-self-auto { + justify-self: auto; + } + + .\32xl\:justify-self-start { + justify-self: start; + } + + .\32xl\:justify-self-end { + justify-self: end; + } + + .\32xl\:justify-self-center { + justify-self: center; + } + + .\32xl\:justify-self-stretch { + justify-self: stretch; + } + + .\32xl\:flex-1 { + flex: 1 1 0%; + } + + .\32xl\:flex-auto { + flex: 1 1 auto; + } + + .\32xl\:flex-initial { + flex: 0 1 auto; + } + + .\32xl\:flex-none { + flex: none; + } + + .\32xl\:flex-grow-0 { + flex-grow: 0; + } + + .\32xl\:flex-grow { + flex-grow: 1; + } + + .\32xl\:flex-shrink-0 { + flex-shrink: 0; + } + + .\32xl\:flex-shrink { + flex-shrink: 1; + } + + .\32xl\:order-1 { + order: 1; + } + + .\32xl\:order-2 { + order: 2; + } + + .\32xl\:order-3 { + order: 3; + } + + .\32xl\:order-4 { + order: 4; + } + + .\32xl\:order-5 { + order: 5; + } + + .\32xl\:order-6 { + order: 6; + } + + .\32xl\:order-7 { + order: 7; + } + + .\32xl\:order-8 { + order: 8; + } + + .\32xl\:order-9 { + order: 9; + } + + .\32xl\:order-10 { + order: 10; + } + + .\32xl\:order-11 { + order: 11; + } + + .\32xl\:order-12 { + order: 12; + } + + .\32xl\:order-first { + order: -9999; + } + + .\32xl\:order-last { + order: 9999; + } + + .\32xl\:order-none { + order: 0; + } + + .\32xl\:float-right { + float: right; + } + + .\32xl\:float-left { + float: left; + } + + .\32xl\:float-none { + float: none; + } + + .\32xl\:clear-left { + clear: left; + } + + .\32xl\:clear-right { + clear: right; + } + + .\32xl\:clear-both { + clear: both; + } + + .\32xl\:clear-none { + clear: none; + } + + .\32xl\:font-body { + font-family: Inter, ui-sans-serif, 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"; + } + + .\32xl\:font-heading { + font-family: Inter, ui-sans-serif, 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"; + } + + .\32xl\:font-sans { + font-family: "Inter", ui-sans-serif, 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"; + } + + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .\32xl\:font-hairline { + font-weight: 100; + } + + .\32xl\:font-thin { + font-weight: 200; + } + + .\32xl\:font-light { + font-weight: 300; + } + + .\32xl\:font-normal { + font-weight: 400; + } + + .\32xl\:font-medium { + font-weight: 500; + } + + .\32xl\:font-semibold { + font-weight: 600; + } + + .\32xl\:font-bold { + font-weight: 700; + } + + .\32xl\:font-extrabold { + font-weight: 800; + } + + .\32xl\:font-black { + font-weight: 900; + } + + .\32xl\:h-0 { + height: 0px; + } + + .\32xl\:h-1 { + height: 0.25rem; + } + + .\32xl\:h-2 { + height: 0.5rem; + } + + .\32xl\:h-3 { + height: 0.75rem; + } + + .\32xl\:h-4 { + height: 1rem; + } + + .\32xl\:h-5 { + height: 1.25rem; + } + + .\32xl\:h-6 { + height: 1.5rem; + } + + .\32xl\:h-7 { + height: 1.75rem; + } + + .\32xl\:h-8 { + height: 2rem; + } + + .\32xl\:h-9 { + height: 2.25rem; + } + + .\32xl\:h-10 { + height: 2.5rem; + } + + .\32xl\:h-11 { + height: 2.75rem; + } + + .\32xl\:h-12 { + height: 3rem; + } + + .\32xl\:h-14 { + height: 3.5rem; + } + + .\32xl\:h-16 { + height: 4rem; + } + + .\32xl\:h-20 { + height: 5rem; + } + + .\32xl\:h-24 { + height: 6rem; + } + + .\32xl\:h-28 { + height: 7rem; + } + + .\32xl\:h-32 { + height: 8rem; + } + + .\32xl\:h-36 { + height: 9rem; + } + + .\32xl\:h-40 { + height: 10rem; + } + + .\32xl\:h-44 { + height: 11rem; + } + + .\32xl\:h-48 { + height: 12rem; + } + + .\32xl\:h-52 { + height: 13rem; + } + + .\32xl\:h-56 { + height: 14rem; + } + + .\32xl\:h-60 { + height: 15rem; + } + + .\32xl\:h-64 { + height: 16rem; + } + + .\32xl\:h-72 { + height: 18rem; + } + + .\32xl\:h-80 { + height: 20rem; + } + + .\32xl\:h-96 { + height: 24rem; + } + + .\32xl\:h-auto { + height: auto; + } + + .\32xl\:h-px { + height: 1px; + } + + .\32xl\:h-0\.5 { + height: 0.125rem; + } + + .\32xl\:h-1\.5 { + height: 0.375rem; + } + + .\32xl\:h-2\.5 { + height: 0.625rem; + } + + .\32xl\:h-3\.5 { + height: 0.875rem; + } + + .\32xl\:h-full { + height: 100%; + } + + .\32xl\:h-screen { + height: 100vh; + } + + .\32xl\:text-xxs { + font-size: 0.6875rem; + } + + .\32xl\:text-xs { + font-size: 0.75rem; + } + + .\32xl\:text-sm { + font-size: 0.875rem; + } + + .\32xl\:text-base { + font-size: 1rem; + } + + .\32xl\:text-lg { + font-size: 1.125rem; + } + + .\32xl\:text-xl { + font-size: 1.25rem; + } + + .\32xl\:text-2xl { + font-size: 1.5rem; + } + + .\32xl\:text-3xl { + font-size: 1.875rem; + } + + .\32xl\:text-4xl { + font-size: 2.25rem; + } + + .\32xl\:text-5xl { + font-size: 3rem; + } + + .\32xl\:text-6xl { + font-size: 3.75rem; + } + + .\32xl\:text-7xl { + font-size: 4.5rem; + } + + .\32xl\:text-8xl { + font-size: 6rem; + } + + .\32xl\:text-9xl { + font-size: 8rem; + } + + .\32xl\:leading-3 { + line-height: .75rem; + } + + .\32xl\:leading-4 { + line-height: 1rem; + } + + .\32xl\:leading-5 { + line-height: 1.25rem; + } + + .\32xl\:leading-6 { + line-height: 1.5rem; + } + + .\32xl\:leading-7 { + line-height: 1.75rem; + } + + .\32xl\:leading-8 { + line-height: 2rem; + } + + .\32xl\:leading-9 { + line-height: 2.25rem; + } + + .\32xl\:leading-10 { + line-height: 2.5rem; + } + + .\32xl\:leading-none { + line-height: 1; + } + + .\32xl\:leading-tight { + line-height: 1.25; + } + + .\32xl\:leading-snug { + line-height: 1.375; + } + + .\32xl\:leading-normal { + line-height: 1.5; + } + + .\32xl\:leading-relaxed { + line-height: 1.625; + } + + .\32xl\:leading-loose { + line-height: 2; + } + + .\32xl\:list-inside { + list-style-position: inside; + } + + .\32xl\:list-outside { + list-style-position: outside; + } + + .\32xl\:list-none { + list-style-type: none; + } + + .\32xl\:list-disc { + list-style-type: disc; + } + + .\32xl\:list-decimal { + list-style-type: decimal; + } + + .\32xl\:m-0 { + margin: 0px; + } + + .\32xl\:m-1 { + margin: 0.25rem; + } + + .\32xl\:m-2 { + margin: 0.5rem; + } + + .\32xl\:m-3 { + margin: 0.75rem; + } + + .\32xl\:m-4 { + margin: 1rem; + } + + .\32xl\:m-5 { + margin: 1.25rem; + } + + .\32xl\:m-6 { + margin: 1.5rem; + } + + .\32xl\:m-7 { + margin: 1.75rem; + } + + .\32xl\:m-8 { + margin: 2rem; + } + + .\32xl\:m-9 { + margin: 2.25rem; + } + + .\32xl\:m-10 { + margin: 2.5rem; + } + + .\32xl\:m-11 { + margin: 2.75rem; + } + + .\32xl\:m-12 { + margin: 3rem; + } + + .\32xl\:m-14 { + margin: 3.5rem; + } + + .\32xl\:m-16 { + margin: 4rem; + } + + .\32xl\:m-20 { + margin: 5rem; + } + + .\32xl\:m-24 { + margin: 6rem; + } + + .\32xl\:m-28 { + margin: 7rem; + } + + .\32xl\:m-32 { + margin: 8rem; + } + + .\32xl\:m-36 { + margin: 9rem; + } + + .\32xl\:m-40 { + margin: 10rem; + } + + .\32xl\:m-44 { + margin: 11rem; + } + + .\32xl\:m-48 { + margin: 12rem; + } + + .\32xl\:m-52 { + margin: 13rem; + } + + .\32xl\:m-56 { + margin: 14rem; + } + + .\32xl\:m-60 { + margin: 15rem; + } + + .\32xl\:m-64 { + margin: 16rem; + } + + .\32xl\:m-72 { + margin: 18rem; + } + + .\32xl\:m-80 { + margin: 20rem; + } + + .\32xl\:m-96 { + margin: 24rem; + } + + .\32xl\:m-auto { + margin: auto; + } + + .\32xl\:m-px { + margin: 1px; + } + + .\32xl\:m-0\.5 { + margin: 0.125rem; + } + + .\32xl\:m-1\.5 { + margin: 0.375rem; + } + + .\32xl\:m-2\.5 { + margin: 0.625rem; + } + + .\32xl\:m-3\.5 { + margin: 0.875rem; + } + + .\32xl\:-m-0 { + margin: 0px; + } + + .\32xl\:-m-1 { + margin: -0.25rem; + } + + .\32xl\:-m-2 { + margin: -0.5rem; + } + + .\32xl\:-m-3 { + margin: -0.75rem; + } + + .\32xl\:-m-4 { + margin: -1rem; + } + + .\32xl\:-m-5 { + margin: -1.25rem; + } + + .\32xl\:-m-6 { + margin: -1.5rem; + } + + .\32xl\:-m-7 { + margin: -1.75rem; + } + + .\32xl\:-m-8 { + margin: -2rem; + } + + .\32xl\:-m-9 { + margin: -2.25rem; + } + + .\32xl\:-m-10 { + margin: -2.5rem; + } + + .\32xl\:-m-11 { + margin: -2.75rem; + } + + .\32xl\:-m-12 { + margin: -3rem; + } + + .\32xl\:-m-14 { + margin: -3.5rem; + } + + .\32xl\:-m-16 { + margin: -4rem; + } + + .\32xl\:-m-20 { + margin: -5rem; + } + + .\32xl\:-m-24 { + margin: -6rem; + } + + .\32xl\:-m-28 { + margin: -7rem; + } + + .\32xl\:-m-32 { + margin: -8rem; + } + + .\32xl\:-m-36 { + margin: -9rem; + } + + .\32xl\:-m-40 { + margin: -10rem; + } + + .\32xl\:-m-44 { + margin: -11rem; + } + + .\32xl\:-m-48 { + margin: -12rem; + } + + .\32xl\:-m-52 { + margin: -13rem; + } + + .\32xl\:-m-56 { + margin: -14rem; + } + + .\32xl\:-m-60 { + margin: -15rem; + } + + .\32xl\:-m-64 { + margin: -16rem; + } + + .\32xl\:-m-72 { + margin: -18rem; + } + + .\32xl\:-m-80 { + margin: -20rem; + } + + .\32xl\:-m-96 { + margin: -24rem; + } + + .\32xl\:-m-px { + margin: -1px; + } + + .\32xl\:-m-0\.5 { + margin: -0.125rem; + } + + .\32xl\:-m-1\.5 { + margin: -0.375rem; + } + + .\32xl\:-m-2\.5 { + margin: -0.625rem; + } + + .\32xl\:-m-3\.5 { + margin: -0.875rem; + } + + .\32xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .\32xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .\32xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .\32xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .\32xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; + } + + .\32xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; + } + + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .\32xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .\32xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .\32xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .\32xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .\32xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .\32xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .\32xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .\32xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .\32xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; + } + + .\32xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; + } + + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; + } + + .\32xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; + } + + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; + } + + .\32xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; + } + + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; + } + + .\32xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; + } + + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .\32xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; + } + + .\32xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; + } + + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .\32xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; + } + + .\32xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; + } + + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .\32xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; + } + + .\32xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; + } + + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .\32xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; + } + + .\32xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; + } + + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .\32xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; + } + + .\32xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; + } + + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; + } + + .\32xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; + } + + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; + } + + .\32xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; + } + + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; + } + + .\32xl\:mx-auto { + margin-left: auto; + margin-right: auto; + } + + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; + } + + .\32xl\:mx-px { + margin-left: 1px; + margin-right: 1px; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .\32xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .\32xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .\32xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .\32xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .\32xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .\32xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .\32xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .\32xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .\32xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; + } + + .\32xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; + } + + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .\32xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .\32xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .\32xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .\32xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .\32xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .\32xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .\32xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .\32xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .\32xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; + } + + .\32xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; + } + + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; + } + + .\32xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; + } + + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; + } + + .\32xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; + } + + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; + } + + .\32xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; + } + + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .\32xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; + } + + .\32xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; + } + + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .\32xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; + } + + .\32xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; + } + + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .\32xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; + } + + .\32xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; + } + + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .\32xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; + } + + .\32xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; + } + + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .\32xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; + } + + .\32xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; + } + + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; + } + + .\32xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; + } + + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; + } + + .\32xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; + } + + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .\32xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .\32xl\:mt-0 { + margin-top: 0px; + } + + .\32xl\:mr-0 { + margin-right: 0px; + } + + .\32xl\:mb-0 { + margin-bottom: 0px; + } + + .\32xl\:ml-0 { + margin-left: 0px; + } + + .\32xl\:mt-1 { + margin-top: 0.25rem; + } + + .\32xl\:mr-1 { + margin-right: 0.25rem; + } + + .\32xl\:mb-1 { + margin-bottom: 0.25rem; + } + + .\32xl\:ml-1 { + margin-left: 0.25rem; + } + + .\32xl\:mt-2 { + margin-top: 0.5rem; + } + + .\32xl\:mr-2 { + margin-right: 0.5rem; + } + + .\32xl\:mb-2 { + margin-bottom: 0.5rem; + } + + .\32xl\:ml-2 { + margin-left: 0.5rem; + } + + .\32xl\:mt-3 { + margin-top: 0.75rem; + } + + .\32xl\:mr-3 { + margin-right: 0.75rem; + } + + .\32xl\:mb-3 { + margin-bottom: 0.75rem; + } + + .\32xl\:ml-3 { + margin-left: 0.75rem; + } + + .\32xl\:mt-4 { + margin-top: 1rem; + } + + .\32xl\:mr-4 { + margin-right: 1rem; + } + + .\32xl\:mb-4 { + margin-bottom: 1rem; + } + + .\32xl\:ml-4 { + margin-left: 1rem; + } + + .\32xl\:mt-5 { + margin-top: 1.25rem; + } + + .\32xl\:mr-5 { + margin-right: 1.25rem; + } + + .\32xl\:mb-5 { + margin-bottom: 1.25rem; + } + + .\32xl\:ml-5 { + margin-left: 1.25rem; + } + + .\32xl\:mt-6 { + margin-top: 1.5rem; + } + + .\32xl\:mr-6 { + margin-right: 1.5rem; + } + + .\32xl\:mb-6 { + margin-bottom: 1.5rem; + } + + .\32xl\:ml-6 { + margin-left: 1.5rem; + } + + .\32xl\:mt-7 { + margin-top: 1.75rem; + } + + .\32xl\:mr-7 { + margin-right: 1.75rem; + } + + .\32xl\:mb-7 { + margin-bottom: 1.75rem; + } + + .\32xl\:ml-7 { + margin-left: 1.75rem; + } + + .\32xl\:mt-8 { + margin-top: 2rem; + } + + .\32xl\:mr-8 { + margin-right: 2rem; + } + + .\32xl\:mb-8 { + margin-bottom: 2rem; + } + + .\32xl\:ml-8 { + margin-left: 2rem; + } + + .\32xl\:mt-9 { + margin-top: 2.25rem; + } + + .\32xl\:mr-9 { + margin-right: 2.25rem; + } + + .\32xl\:mb-9 { + margin-bottom: 2.25rem; + } + + .\32xl\:ml-9 { + margin-left: 2.25rem; + } + + .\32xl\:mt-10 { + margin-top: 2.5rem; + } + + .\32xl\:mr-10 { + margin-right: 2.5rem; + } + + .\32xl\:mb-10 { + margin-bottom: 2.5rem; + } + + .\32xl\:ml-10 { + margin-left: 2.5rem; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem; + } + + .\32xl\:mr-11 { + margin-right: 2.75rem; + } + + .\32xl\:mb-11 { + margin-bottom: 2.75rem; + } + + .\32xl\:ml-11 { + margin-left: 2.75rem; + } + + .\32xl\:mt-12 { + margin-top: 3rem; + } + + .\32xl\:mr-12 { + margin-right: 3rem; + } + + .\32xl\:mb-12 { + margin-bottom: 3rem; + } + + .\32xl\:ml-12 { + margin-left: 3rem; + } + + .\32xl\:mt-14 { + margin-top: 3.5rem; + } + + .\32xl\:mr-14 { + margin-right: 3.5rem; + } + + .\32xl\:mb-14 { + margin-bottom: 3.5rem; + } + + .\32xl\:ml-14 { + margin-left: 3.5rem; + } + + .\32xl\:mt-16 { + margin-top: 4rem; + } + + .\32xl\:mr-16 { + margin-right: 4rem; + } + + .\32xl\:mb-16 { + margin-bottom: 4rem; + } + + .\32xl\:ml-16 { + margin-left: 4rem; + } + + .\32xl\:mt-20 { + margin-top: 5rem; + } + + .\32xl\:mr-20 { + margin-right: 5rem; + } + + .\32xl\:mb-20 { + margin-bottom: 5rem; + } + + .\32xl\:ml-20 { + margin-left: 5rem; + } + + .\32xl\:mt-24 { + margin-top: 6rem; + } + + .\32xl\:mr-24 { + margin-right: 6rem; + } + + .\32xl\:mb-24 { + margin-bottom: 6rem; + } + + .\32xl\:ml-24 { + margin-left: 6rem; + } + + .\32xl\:mt-28 { + margin-top: 7rem; + } + + .\32xl\:mr-28 { + margin-right: 7rem; + } + + .\32xl\:mb-28 { + margin-bottom: 7rem; + } + + .\32xl\:ml-28 { + margin-left: 7rem; + } + + .\32xl\:mt-32 { + margin-top: 8rem; + } + + .\32xl\:mr-32 { + margin-right: 8rem; + } + + .\32xl\:mb-32 { + margin-bottom: 8rem; + } + + .\32xl\:ml-32 { + margin-left: 8rem; + } + + .\32xl\:mt-36 { + margin-top: 9rem; + } + + .\32xl\:mr-36 { + margin-right: 9rem; + } + + .\32xl\:mb-36 { + margin-bottom: 9rem; + } + + .\32xl\:ml-36 { + margin-left: 9rem; + } + + .\32xl\:mt-40 { + margin-top: 10rem; + } + + .\32xl\:mr-40 { + margin-right: 10rem; + } + + .\32xl\:mb-40 { + margin-bottom: 10rem; + } + + .\32xl\:ml-40 { + margin-left: 10rem; + } + + .\32xl\:mt-44 { + margin-top: 11rem; + } + + .\32xl\:mr-44 { + margin-right: 11rem; + } + + .\32xl\:mb-44 { + margin-bottom: 11rem; + } + + .\32xl\:ml-44 { + margin-left: 11rem; + } + + .\32xl\:mt-48 { + margin-top: 12rem; + } + + .\32xl\:mr-48 { + margin-right: 12rem; + } + + .\32xl\:mb-48 { + margin-bottom: 12rem; + } + + .\32xl\:ml-48 { + margin-left: 12rem; + } + + .\32xl\:mt-52 { + margin-top: 13rem; + } + + .\32xl\:mr-52 { + margin-right: 13rem; + } + + .\32xl\:mb-52 { + margin-bottom: 13rem; + } + + .\32xl\:ml-52 { + margin-left: 13rem; + } + + .\32xl\:mt-56 { + margin-top: 14rem; + } + + .\32xl\:mr-56 { + margin-right: 14rem; + } + + .\32xl\:mb-56 { + margin-bottom: 14rem; + } + + .\32xl\:ml-56 { + margin-left: 14rem; + } + + .\32xl\:mt-60 { + margin-top: 15rem; + } + + .\32xl\:mr-60 { + margin-right: 15rem; + } + + .\32xl\:mb-60 { + margin-bottom: 15rem; + } + + .\32xl\:ml-60 { + margin-left: 15rem; + } + + .\32xl\:mt-64 { + margin-top: 16rem; + } + + .\32xl\:mr-64 { + margin-right: 16rem; + } + + .\32xl\:mb-64 { + margin-bottom: 16rem; + } + + .\32xl\:ml-64 { + margin-left: 16rem; + } + + .\32xl\:mt-72 { + margin-top: 18rem; + } + + .\32xl\:mr-72 { + margin-right: 18rem; + } + + .\32xl\:mb-72 { + margin-bottom: 18rem; + } + + .\32xl\:ml-72 { + margin-left: 18rem; + } + + .\32xl\:mt-80 { + margin-top: 20rem; + } + + .\32xl\:mr-80 { + margin-right: 20rem; + } + + .\32xl\:mb-80 { + margin-bottom: 20rem; + } + + .\32xl\:ml-80 { + margin-left: 20rem; + } + + .\32xl\:mt-96 { + margin-top: 24rem; + } + + .\32xl\:mr-96 { + margin-right: 24rem; + } + + .\32xl\:mb-96 { + margin-bottom: 24rem; + } + + .\32xl\:ml-96 { + margin-left: 24rem; + } + + .\32xl\:mt-auto { + margin-top: auto; + } + + .\32xl\:mr-auto { + margin-right: auto; + } + + .\32xl\:mb-auto { + margin-bottom: auto; + } + + .\32xl\:ml-auto { + margin-left: auto; + } + + .\32xl\:mt-px { + margin-top: 1px; + } + + .\32xl\:mr-px { + margin-right: 1px; + } + + .\32xl\:mb-px { + margin-bottom: 1px; + } + + .\32xl\:ml-px { + margin-left: 1px; + } + + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; + } + + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; + } + + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .\32xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; + } + + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .\32xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; + } + + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .\32xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; + } + + .\32xl\:mr-3\.5 { + margin-right: 0.875rem; + } + + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .\32xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .\32xl\:-mt-0 { + margin-top: 0px; + } + + .\32xl\:-mr-0 { + margin-right: 0px; + } + + .\32xl\:-mb-0 { + margin-bottom: 0px; + } + + .\32xl\:-ml-0 { + margin-left: 0px; + } + + .\32xl\:-mt-1 { + margin-top: -0.25rem; + } + + .\32xl\:-mr-1 { + margin-right: -0.25rem; + } + + .\32xl\:-mb-1 { + margin-bottom: -0.25rem; + } + + .\32xl\:-ml-1 { + margin-left: -0.25rem; + } + + .\32xl\:-mt-2 { + margin-top: -0.5rem; + } + + .\32xl\:-mr-2 { + margin-right: -0.5rem; + } + + .\32xl\:-mb-2 { + margin-bottom: -0.5rem; + } + + .\32xl\:-ml-2 { + margin-left: -0.5rem; + } + + .\32xl\:-mt-3 { + margin-top: -0.75rem; + } + + .\32xl\:-mr-3 { + margin-right: -0.75rem; + } + + .\32xl\:-mb-3 { + margin-bottom: -0.75rem; + } + + .\32xl\:-ml-3 { + margin-left: -0.75rem; + } + + .\32xl\:-mt-4 { + margin-top: -1rem; + } + + .\32xl\:-mr-4 { + margin-right: -1rem; + } + + .\32xl\:-mb-4 { + margin-bottom: -1rem; + } + + .\32xl\:-ml-4 { + margin-left: -1rem; + } + + .\32xl\:-mt-5 { + margin-top: -1.25rem; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem; + } + + .\32xl\:-mb-5 { + margin-bottom: -1.25rem; + } + + .\32xl\:-ml-5 { + margin-left: -1.25rem; + } + + .\32xl\:-mt-6 { + margin-top: -1.5rem; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem; + } + + .\32xl\:-mb-6 { + margin-bottom: -1.5rem; + } + + .\32xl\:-ml-6 { + margin-left: -1.5rem; + } + + .\32xl\:-mt-7 { + margin-top: -1.75rem; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem; + } + + .\32xl\:-mb-7 { + margin-bottom: -1.75rem; + } + + .\32xl\:-ml-7 { + margin-left: -1.75rem; + } + + .\32xl\:-mt-8 { + margin-top: -2rem; + } + + .\32xl\:-mr-8 { + margin-right: -2rem; + } + + .\32xl\:-mb-8 { + margin-bottom: -2rem; + } + + .\32xl\:-ml-8 { + margin-left: -2rem; + } + + .\32xl\:-mt-9 { + margin-top: -2.25rem; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem; + } + + .\32xl\:-mb-9 { + margin-bottom: -2.25rem; + } + + .\32xl\:-ml-9 { + margin-left: -2.25rem; + } + + .\32xl\:-mt-10 { + margin-top: -2.5rem; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem; + } + + .\32xl\:-mb-10 { + margin-bottom: -2.5rem; + } + + .\32xl\:-ml-10 { + margin-left: -2.5rem; + } + + .\32xl\:-mt-11 { + margin-top: -2.75rem; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem; + } + + .\32xl\:-mb-11 { + margin-bottom: -2.75rem; + } + + .\32xl\:-ml-11 { + margin-left: -2.75rem; + } + + .\32xl\:-mt-12 { + margin-top: -3rem; + } + + .\32xl\:-mr-12 { + margin-right: -3rem; + } + + .\32xl\:-mb-12 { + margin-bottom: -3rem; + } + + .\32xl\:-ml-12 { + margin-left: -3rem; + } + + .\32xl\:-mt-14 { + margin-top: -3.5rem; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem; + } + + .\32xl\:-mb-14 { + margin-bottom: -3.5rem; + } + + .\32xl\:-ml-14 { + margin-left: -3.5rem; + } + + .\32xl\:-mt-16 { + margin-top: -4rem; + } + + .\32xl\:-mr-16 { + margin-right: -4rem; + } + + .\32xl\:-mb-16 { + margin-bottom: -4rem; + } + + .\32xl\:-ml-16 { + margin-left: -4rem; + } + + .\32xl\:-mt-20 { + margin-top: -5rem; + } + + .\32xl\:-mr-20 { + margin-right: -5rem; + } + + .\32xl\:-mb-20 { + margin-bottom: -5rem; + } + + .\32xl\:-ml-20 { + margin-left: -5rem; + } + + .\32xl\:-mt-24 { + margin-top: -6rem; + } + + .\32xl\:-mr-24 { + margin-right: -6rem; + } + + .\32xl\:-mb-24 { + margin-bottom: -6rem; + } + + .\32xl\:-ml-24 { + margin-left: -6rem; + } + + .\32xl\:-mt-28 { + margin-top: -7rem; + } + + .\32xl\:-mr-28 { + margin-right: -7rem; + } + + .\32xl\:-mb-28 { + margin-bottom: -7rem; + } + + .\32xl\:-ml-28 { + margin-left: -7rem; + } + + .\32xl\:-mt-32 { + margin-top: -8rem; + } + + .\32xl\:-mr-32 { + margin-right: -8rem; + } + + .\32xl\:-mb-32 { + margin-bottom: -8rem; + } + + .\32xl\:-ml-32 { + margin-left: -8rem; + } + + .\32xl\:-mt-36 { + margin-top: -9rem; + } + + .\32xl\:-mr-36 { + margin-right: -9rem; + } + + .\32xl\:-mb-36 { + margin-bottom: -9rem; + } + + .\32xl\:-ml-36 { + margin-left: -9rem; + } + + .\32xl\:-mt-40 { + margin-top: -10rem; + } + + .\32xl\:-mr-40 { + margin-right: -10rem; + } + + .\32xl\:-mb-40 { + margin-bottom: -10rem; + } + + .\32xl\:-ml-40 { + margin-left: -10rem; + } + + .\32xl\:-mt-44 { + margin-top: -11rem; + } + + .\32xl\:-mr-44 { + margin-right: -11rem; + } + + .\32xl\:-mb-44 { + margin-bottom: -11rem; + } + + .\32xl\:-ml-44 { + margin-left: -11rem; + } + + .\32xl\:-mt-48 { + margin-top: -12rem; + } + + .\32xl\:-mr-48 { + margin-right: -12rem; + } + + .\32xl\:-mb-48 { + margin-bottom: -12rem; + } + + .\32xl\:-ml-48 { + margin-left: -12rem; + } + + .\32xl\:-mt-52 { + margin-top: -13rem; + } + + .\32xl\:-mr-52 { + margin-right: -13rem; + } + + .\32xl\:-mb-52 { + margin-bottom: -13rem; + } + + .\32xl\:-ml-52 { + margin-left: -13rem; + } + + .\32xl\:-mt-56 { + margin-top: -14rem; + } + + .\32xl\:-mr-56 { + margin-right: -14rem; + } + + .\32xl\:-mb-56 { + margin-bottom: -14rem; + } + + .\32xl\:-ml-56 { + margin-left: -14rem; + } + + .\32xl\:-mt-60 { + margin-top: -15rem; + } + + .\32xl\:-mr-60 { + margin-right: -15rem; + } + + .\32xl\:-mb-60 { + margin-bottom: -15rem; + } + + .\32xl\:-ml-60 { + margin-left: -15rem; + } + + .\32xl\:-mt-64 { + margin-top: -16rem; + } + + .\32xl\:-mr-64 { + margin-right: -16rem; + } + + .\32xl\:-mb-64 { + margin-bottom: -16rem; + } + + .\32xl\:-ml-64 { + margin-left: -16rem; + } + + .\32xl\:-mt-72 { + margin-top: -18rem; + } + + .\32xl\:-mr-72 { + margin-right: -18rem; + } + + .\32xl\:-mb-72 { + margin-bottom: -18rem; + } + + .\32xl\:-ml-72 { + margin-left: -18rem; + } + + .\32xl\:-mt-80 { + margin-top: -20rem; + } + + .\32xl\:-mr-80 { + margin-right: -20rem; + } + + .\32xl\:-mb-80 { + margin-bottom: -20rem; + } + + .\32xl\:-ml-80 { + margin-left: -20rem; + } + + .\32xl\:-mt-96 { + margin-top: -24rem; + } + + .\32xl\:-mr-96 { + margin-right: -24rem; + } + + .\32xl\:-mb-96 { + margin-bottom: -24rem; + } + + .\32xl\:-ml-96 { + margin-left: -24rem; + } + + .\32xl\:-mt-px { + margin-top: -1px; + } + + .\32xl\:-mr-px { + margin-right: -1px; + } + + .\32xl\:-mb-px { + margin-bottom: -1px; + } + + .\32xl\:-ml-px { + margin-left: -1px; + } + + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .\32xl\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .\32xl\:max-h-full { + max-height: 100%; + } + + .\32xl\:max-h-screen { + max-height: 100vh; + } + + .\32xl\:max-w-none { + max-width: none; + } + + .\32xl\:max-w-xs { + max-width: 20rem; + } + + .\32xl\:max-w-sm { + max-width: 24rem; + } + + .\32xl\:max-w-md { + max-width: 28rem; + } + + .\32xl\:max-w-lg { + max-width: 32rem; + } + + .\32xl\:max-w-xl { + max-width: 36rem; + } + + .\32xl\:max-w-2xl { + max-width: 42rem; + } + + .\32xl\:max-w-3xl { + max-width: 48rem; + } + + .\32xl\:max-w-4xl { + max-width: 56rem; + } + + .\32xl\:max-w-5xl { + max-width: 64rem; + } + + .\32xl\:max-w-6xl { + max-width: 72rem; + } + + .\32xl\:max-w-7xl { + max-width: 80rem; + } + + .\32xl\:max-w-full { + max-width: 100%; + } + + .\32xl\:max-w-min { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .\32xl\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .\32xl\:max-w-prose { + max-width: 65ch; + } + + .\32xl\:min-h-0 { + min-height: 0; + } + + .\32xl\:min-h-full { + min-height: 100%; + } + + .\32xl\:min-h-screen { + min-height: 100vh; + } + + .\32xl\:min-w-0 { + min-width: 0; + } + + .\32xl\:min-w-full { + min-width: 100%; + } + + .\32xl\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .\32xl\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .\32xl\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .\32xl\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .\32xl\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .\32xl\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .\32xl\:object-center { + -o-object-position: center; + object-position: center; + } + + .\32xl\:object-left { + -o-object-position: left; + object-position: left; + } + + .\32xl\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .\32xl\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .\32xl\:object-right { + -o-object-position: right; + object-position: right; + } + + .\32xl\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .\32xl\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .\32xl\:object-top { + -o-object-position: top; + object-position: top; + } + + .\32xl\:opacity-0 { + opacity: 0; + } + + .\32xl\:opacity-5 { + opacity: 0.05; + } + + .\32xl\:opacity-10 { + opacity: 0.1; + } + + .\32xl\:opacity-20 { + opacity: 0.2; + } + + .\32xl\:opacity-25 { + opacity: 0.25; + } + + .\32xl\:opacity-30 { + opacity: 0.3; + } + + .\32xl\:opacity-40 { + opacity: 0.4; + } + + .\32xl\:opacity-50 { + opacity: 0.5; + } + + .\32xl\:opacity-60 { + opacity: 0.6; + } + + .\32xl\:opacity-70 { + opacity: 0.7; + } + + .\32xl\:opacity-75 { + opacity: 0.75; + } + + .\32xl\:opacity-80 { + opacity: 0.8; + } + + .\32xl\:opacity-90 { + opacity: 0.9; + } + + .\32xl\:opacity-95 { + opacity: 0.95; + } + + .\32xl\:opacity-100 { + opacity: 1; + } + + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1; + } + + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .\32xl\:hover\:opacity-0:hover { + opacity: 0; + } + + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .\32xl\:hover\:opacity-100:hover { + opacity: 1; + } + + .\32xl\:focus\:opacity-0:focus { + opacity: 0; + } + + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .\32xl\:focus\:opacity-100:focus { + opacity: 1; + } + + .\32xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:overflow-auto { + overflow: auto; + } + + .\32xl\:overflow-hidden { + overflow: hidden; + } + + .\32xl\:overflow-visible { + overflow: visible; + } + + .\32xl\:overflow-scroll { + overflow: scroll; + } + + .\32xl\:overflow-x-auto { + overflow-x: auto; + } + + .\32xl\:overflow-y-auto { + overflow-y: auto; + } + + .\32xl\:overflow-x-hidden { + overflow-x: hidden; + } + + .\32xl\:overflow-y-hidden { + overflow-y: hidden; + } + + .\32xl\:overflow-x-visible { + overflow-x: visible; + } + + .\32xl\:overflow-y-visible { + overflow-y: visible; + } + + .\32xl\:overflow-x-scroll { + overflow-x: scroll; + } + + .\32xl\:overflow-y-scroll { + overflow-y: scroll; + } + + .\32xl\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .\32xl\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .\32xl\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .\32xl\:p-0 { + padding: 0px; + } + + .\32xl\:p-1 { + padding: 0.25rem; + } + + .\32xl\:p-2 { + padding: 0.5rem; + } + + .\32xl\:p-3 { + padding: 0.75rem; + } + + .\32xl\:p-4 { + padding: 1rem; + } + + .\32xl\:p-5 { + padding: 1.25rem; + } + + .\32xl\:p-6 { + padding: 1.5rem; + } + + .\32xl\:p-7 { + padding: 1.75rem; + } + + .\32xl\:p-8 { + padding: 2rem; + } + + .\32xl\:p-9 { + padding: 2.25rem; + } + + .\32xl\:p-10 { + padding: 2.5rem; + } + + .\32xl\:p-11 { + padding: 2.75rem; + } + + .\32xl\:p-12 { + padding: 3rem; + } + + .\32xl\:p-14 { + padding: 3.5rem; + } + + .\32xl\:p-16 { + padding: 4rem; + } + + .\32xl\:p-20 { + padding: 5rem; + } + + .\32xl\:p-24 { + padding: 6rem; + } + + .\32xl\:p-28 { + padding: 7rem; + } + + .\32xl\:p-32 { + padding: 8rem; + } + + .\32xl\:p-36 { + padding: 9rem; + } + + .\32xl\:p-40 { + padding: 10rem; + } + + .\32xl\:p-44 { + padding: 11rem; + } + + .\32xl\:p-48 { + padding: 12rem; + } + + .\32xl\:p-52 { + padding: 13rem; + } + + .\32xl\:p-56 { + padding: 14rem; + } + + .\32xl\:p-60 { + padding: 15rem; + } + + .\32xl\:p-64 { + padding: 16rem; + } + + .\32xl\:p-72 { + padding: 18rem; + } + + .\32xl\:p-80 { + padding: 20rem; + } + + .\32xl\:p-96 { + padding: 24rem; + } + + .\32xl\:p-px { + padding: 1px; + } + + .\32xl\:p-0\.5 { + padding: 0.125rem; + } + + .\32xl\:p-1\.5 { + padding: 0.375rem; + } + + .\32xl\:p-2\.5 { + padding: 0.625rem; + } + + .\32xl\:p-3\.5 { + padding: 0.875rem; + } + + .\32xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .\32xl\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .\32xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .\32xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .\32xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .\32xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .\32xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .\32xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .\32xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; + } + + .\32xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; + } + + .\32xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .\32xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .\32xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .\32xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .\32xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .\32xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .\32xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .\32xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .\32xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .\32xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .\32xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .\32xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .\32xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .\32xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .\32xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .\32xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .\32xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .\32xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .\32xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; + } + + .\32xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; + } + + .\32xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; + } + + .\32xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; + } + + .\32xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; + } + + .\32xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; + } + + .\32xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; + } + + .\32xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; + } + + .\32xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .\32xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .\32xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; + } + + .\32xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; + } + + .\32xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .\32xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .\32xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; + } + + .\32xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; + } + + .\32xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .\32xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .\32xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; + } + + .\32xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; + } + + .\32xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .\32xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .\32xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; + } + + .\32xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; + } + + .\32xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .\32xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .\32xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; + } + + .\32xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; + } + + .\32xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; + } + + .\32xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; + } + + .\32xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; + } + + .\32xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; + } + + .\32xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .\32xl\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .\32xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .\32xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .\32xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .\32xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .\32xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .\32xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .\32xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .\32xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .\32xl\:pt-0 { + padding-top: 0px; + } + + .\32xl\:pr-0 { + padding-right: 0px; + } + + .\32xl\:pb-0 { + padding-bottom: 0px; + } + + .\32xl\:pl-0 { + padding-left: 0px; + } + + .\32xl\:pt-1 { + padding-top: 0.25rem; + } + + .\32xl\:pr-1 { + padding-right: 0.25rem; + } + + .\32xl\:pb-1 { + padding-bottom: 0.25rem; + } + + .\32xl\:pl-1 { + padding-left: 0.25rem; + } + + .\32xl\:pt-2 { + padding-top: 0.5rem; + } + + .\32xl\:pr-2 { + padding-right: 0.5rem; + } + + .\32xl\:pb-2 { + padding-bottom: 0.5rem; + } + + .\32xl\:pl-2 { + padding-left: 0.5rem; + } + + .\32xl\:pt-3 { + padding-top: 0.75rem; + } + + .\32xl\:pr-3 { + padding-right: 0.75rem; + } + + .\32xl\:pb-3 { + padding-bottom: 0.75rem; + } + + .\32xl\:pl-3 { + padding-left: 0.75rem; + } + + .\32xl\:pt-4 { + padding-top: 1rem; + } + + .\32xl\:pr-4 { + padding-right: 1rem; + } + + .\32xl\:pb-4 { + padding-bottom: 1rem; + } + + .\32xl\:pl-4 { + padding-left: 1rem; + } + + .\32xl\:pt-5 { + padding-top: 1.25rem; + } + + .\32xl\:pr-5 { + padding-right: 1.25rem; + } + + .\32xl\:pb-5 { + padding-bottom: 1.25rem; + } + + .\32xl\:pl-5 { + padding-left: 1.25rem; + } + + .\32xl\:pt-6 { + padding-top: 1.5rem; + } + + .\32xl\:pr-6 { + padding-right: 1.5rem; + } + + .\32xl\:pb-6 { + padding-bottom: 1.5rem; + } + + .\32xl\:pl-6 { + padding-left: 1.5rem; + } + + .\32xl\:pt-7 { + padding-top: 1.75rem; + } + + .\32xl\:pr-7 { + padding-right: 1.75rem; + } + + .\32xl\:pb-7 { + padding-bottom: 1.75rem; + } + + .\32xl\:pl-7 { + padding-left: 1.75rem; + } + + .\32xl\:pt-8 { + padding-top: 2rem; + } + + .\32xl\:pr-8 { + padding-right: 2rem; + } + + .\32xl\:pb-8 { + padding-bottom: 2rem; + } + + .\32xl\:pl-8 { + padding-left: 2rem; + } + + .\32xl\:pt-9 { + padding-top: 2.25rem; + } + + .\32xl\:pr-9 { + padding-right: 2.25rem; + } + + .\32xl\:pb-9 { + padding-bottom: 2.25rem; + } + + .\32xl\:pl-9 { + padding-left: 2.25rem; + } + + .\32xl\:pt-10 { + padding-top: 2.5rem; + } + + .\32xl\:pr-10 { + padding-right: 2.5rem; + } + + .\32xl\:pb-10 { + padding-bottom: 2.5rem; + } + + .\32xl\:pl-10 { + padding-left: 2.5rem; + } + + .\32xl\:pt-11 { + padding-top: 2.75rem; + } + + .\32xl\:pr-11 { + padding-right: 2.75rem; + } + + .\32xl\:pb-11 { + padding-bottom: 2.75rem; + } + + .\32xl\:pl-11 { + padding-left: 2.75rem; + } + + .\32xl\:pt-12 { + padding-top: 3rem; + } + + .\32xl\:pr-12 { + padding-right: 3rem; + } + + .\32xl\:pb-12 { + padding-bottom: 3rem; + } + + .\32xl\:pl-12 { + padding-left: 3rem; + } + + .\32xl\:pt-14 { + padding-top: 3.5rem; + } + + .\32xl\:pr-14 { + padding-right: 3.5rem; + } + + .\32xl\:pb-14 { + padding-bottom: 3.5rem; + } + + .\32xl\:pl-14 { + padding-left: 3.5rem; + } + + .\32xl\:pt-16 { + padding-top: 4rem; + } + + .\32xl\:pr-16 { + padding-right: 4rem; + } + + .\32xl\:pb-16 { + padding-bottom: 4rem; + } + + .\32xl\:pl-16 { + padding-left: 4rem; + } + + .\32xl\:pt-20 { + padding-top: 5rem; + } + + .\32xl\:pr-20 { + padding-right: 5rem; + } + + .\32xl\:pb-20 { + padding-bottom: 5rem; + } + + .\32xl\:pl-20 { + padding-left: 5rem; + } + + .\32xl\:pt-24 { + padding-top: 6rem; + } + + .\32xl\:pr-24 { + padding-right: 6rem; + } + + .\32xl\:pb-24 { + padding-bottom: 6rem; + } + + .\32xl\:pl-24 { + padding-left: 6rem; + } + + .\32xl\:pt-28 { + padding-top: 7rem; + } + + .\32xl\:pr-28 { + padding-right: 7rem; + } + + .\32xl\:pb-28 { + padding-bottom: 7rem; + } + + .\32xl\:pl-28 { + padding-left: 7rem; + } + + .\32xl\:pt-32 { + padding-top: 8rem; + } + + .\32xl\:pr-32 { + padding-right: 8rem; + } + + .\32xl\:pb-32 { + padding-bottom: 8rem; + } + + .\32xl\:pl-32 { + padding-left: 8rem; + } + + .\32xl\:pt-36 { + padding-top: 9rem; + } + + .\32xl\:pr-36 { + padding-right: 9rem; + } + + .\32xl\:pb-36 { + padding-bottom: 9rem; + } + + .\32xl\:pl-36 { + padding-left: 9rem; + } + + .\32xl\:pt-40 { + padding-top: 10rem; + } + + .\32xl\:pr-40 { + padding-right: 10rem; + } + + .\32xl\:pb-40 { + padding-bottom: 10rem; + } + + .\32xl\:pl-40 { + padding-left: 10rem; + } + + .\32xl\:pt-44 { + padding-top: 11rem; + } + + .\32xl\:pr-44 { + padding-right: 11rem; + } + + .\32xl\:pb-44 { + padding-bottom: 11rem; + } + + .\32xl\:pl-44 { + padding-left: 11rem; + } + + .\32xl\:pt-48 { + padding-top: 12rem; + } + + .\32xl\:pr-48 { + padding-right: 12rem; + } + + .\32xl\:pb-48 { + padding-bottom: 12rem; + } + + .\32xl\:pl-48 { + padding-left: 12rem; + } + + .\32xl\:pt-52 { + padding-top: 13rem; + } + + .\32xl\:pr-52 { + padding-right: 13rem; + } + + .\32xl\:pb-52 { + padding-bottom: 13rem; + } + + .\32xl\:pl-52 { + padding-left: 13rem; + } + + .\32xl\:pt-56 { + padding-top: 14rem; + } + + .\32xl\:pr-56 { + padding-right: 14rem; + } + + .\32xl\:pb-56 { + padding-bottom: 14rem; + } + + .\32xl\:pl-56 { + padding-left: 14rem; + } + + .\32xl\:pt-60 { + padding-top: 15rem; + } + + .\32xl\:pr-60 { + padding-right: 15rem; + } + + .\32xl\:pb-60 { + padding-bottom: 15rem; + } + + .\32xl\:pl-60 { + padding-left: 15rem; + } + + .\32xl\:pt-64 { + padding-top: 16rem; + } + + .\32xl\:pr-64 { + padding-right: 16rem; + } + + .\32xl\:pb-64 { + padding-bottom: 16rem; + } + + .\32xl\:pl-64 { + padding-left: 16rem; + } + + .\32xl\:pt-72 { + padding-top: 18rem; + } + + .\32xl\:pr-72 { + padding-right: 18rem; + } + + .\32xl\:pb-72 { + padding-bottom: 18rem; + } + + .\32xl\:pl-72 { + padding-left: 18rem; + } + + .\32xl\:pt-80 { + padding-top: 20rem; + } + + .\32xl\:pr-80 { + padding-right: 20rem; + } + + .\32xl\:pb-80 { + padding-bottom: 20rem; + } + + .\32xl\:pl-80 { + padding-left: 20rem; + } + + .\32xl\:pt-96 { + padding-top: 24rem; + } + + .\32xl\:pr-96 { + padding-right: 24rem; + } + + .\32xl\:pb-96 { + padding-bottom: 24rem; + } + + .\32xl\:pl-96 { + padding-left: 24rem; + } + + .\32xl\:pt-px { + padding-top: 1px; + } + + .\32xl\:pr-px { + padding-right: 1px; + } + + .\32xl\:pb-px { + padding-bottom: 1px; + } + + .\32xl\:pl-px { + padding-left: 1px; + } + + .\32xl\:pt-0\.5 { + padding-top: 0.125rem; + } + + .\32xl\:pr-0\.5 { + padding-right: 0.125rem; + } + + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .\32xl\:pl-0\.5 { + padding-left: 0.125rem; + } + + .\32xl\:pt-1\.5 { + padding-top: 0.375rem; + } + + .\32xl\:pr-1\.5 { + padding-right: 0.375rem; + } + + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .\32xl\:pl-1\.5 { + padding-left: 0.375rem; + } + + .\32xl\:pt-2\.5 { + padding-top: 0.625rem; + } + + .\32xl\:pr-2\.5 { + padding-right: 0.625rem; + } + + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .\32xl\:pl-2\.5 { + padding-left: 0.625rem; + } + + .\32xl\:pt-3\.5 { + padding-top: 0.875rem; + } + + .\32xl\:pr-3\.5 { + padding-right: 0.875rem; + } + + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .\32xl\:pl-3\.5 { + padding-left: 0.875rem; + } + + .\32xl\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current::placeholder { + color: currentColor; + } + + .\32xl\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent::-moz-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent:-ms-input-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent::-ms-input-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent::placeholder { + color: transparent; + } + + .\32xl\:placeholder-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::-ms-input-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:pointer-events-none { + pointer-events: none; + } + + .\32xl\:pointer-events-auto { + pointer-events: auto; + } + + .\32xl\:static { + position: static; + } + + .\32xl\:fixed { + position: fixed; + } + + .\32xl\:absolute { + position: absolute; + } + + .\32xl\:relative { + position: relative; + } + + .\32xl\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .\32xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .\32xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .\32xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .\32xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .\32xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .\32xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .\32xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .\32xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .\32xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .\32xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .\32xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .\32xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .\32xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .\32xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .\32xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .\32xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .\32xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .\32xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .\32xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .\32xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .\32xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .\32xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .\32xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .\32xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .\32xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .\32xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .\32xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .\32xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .\32xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .\32xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .\32xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .\32xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .\32xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .\32xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .\32xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .\32xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .\32xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .\32xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .\32xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .\32xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .\32xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .\32xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .\32xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .\32xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .\32xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .\32xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .\32xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .\32xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .\32xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .\32xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .\32xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .\32xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .\32xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .\32xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .\32xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .\32xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .\32xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .\32xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .\32xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .\32xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .\32xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .\32xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .\32xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .\32xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .\32xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .\32xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .\32xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .\32xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .\32xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .\32xl\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .\32xl\:inset-x-0 { + right: 0px; + left: 0px; + } + + .\32xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .\32xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .\32xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .\32xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .\32xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .\32xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; + } + + .\32xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; + } + + .\32xl\:inset-x-4 { + right: 1rem; + left: 1rem; + } + + .\32xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; + } + + .\32xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; + } + + .\32xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; + } + + .\32xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; + } + + .\32xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; + } + + .\32xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; + } + + .\32xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; + } + + .\32xl\:inset-x-8 { + right: 2rem; + left: 2rem; + } + + .\32xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; + } + + .\32xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; + } + + .\32xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; + } + + .\32xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; + } + + .\32xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; + } + + .\32xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; + } + + .\32xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; + } + + .\32xl\:inset-x-12 { + right: 3rem; + left: 3rem; + } + + .\32xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .\32xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .\32xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; + } + + .\32xl\:inset-x-16 { + right: 4rem; + left: 4rem; + } + + .\32xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; + } + + .\32xl\:inset-x-20 { + right: 5rem; + left: 5rem; + } + + .\32xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; + } + + .\32xl\:inset-x-24 { + right: 6rem; + left: 6rem; + } + + .\32xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; + } + + .\32xl\:inset-x-28 { + right: 7rem; + left: 7rem; + } + + .\32xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; + } + + .\32xl\:inset-x-32 { + right: 8rem; + left: 8rem; + } + + .\32xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; + } + + .\32xl\:inset-x-36 { + right: 9rem; + left: 9rem; + } + + .\32xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; + } + + .\32xl\:inset-x-40 { + right: 10rem; + left: 10rem; + } + + .\32xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; + } + + .\32xl\:inset-x-44 { + right: 11rem; + left: 11rem; + } + + .\32xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; + } + + .\32xl\:inset-x-48 { + right: 12rem; + left: 12rem; + } + + .\32xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; + } + + .\32xl\:inset-x-52 { + right: 13rem; + left: 13rem; + } + + .\32xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; + } + + .\32xl\:inset-x-56 { + right: 14rem; + left: 14rem; + } + + .\32xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; + } + + .\32xl\:inset-x-60 { + right: 15rem; + left: 15rem; + } + + .\32xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; + } + + .\32xl\:inset-x-64 { + right: 16rem; + left: 16rem; + } + + .\32xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; + } + + .\32xl\:inset-x-72 { + right: 18rem; + left: 18rem; + } + + .\32xl\:inset-y-80 { + top: 20rem; + bottom: 20rem; + } + + .\32xl\:inset-x-80 { + right: 20rem; + left: 20rem; + } + + .\32xl\:inset-y-96 { + top: 24rem; + bottom: 24rem; + } + + .\32xl\:inset-x-96 { + right: 24rem; + left: 24rem; + } + + .\32xl\:inset-y-auto { + top: auto; + bottom: auto; + } + + .\32xl\:inset-x-auto { + right: auto; + left: auto; + } + + .\32xl\:inset-y-px { + top: 1px; + bottom: 1px; + } + + .\32xl\:inset-x-px { + right: 1px; + left: 1px; + } + + .\32xl\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; + } + + .\32xl\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .\32xl\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .\32xl\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .\32xl\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .\32xl\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .\32xl\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .\32xl\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .\32xl\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .\32xl\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .\32xl\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .\32xl\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .\32xl\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .\32xl\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .\32xl\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .\32xl\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; + } + + .\32xl\:-inset-y-4 { + top: -1rem; + bottom: -1rem; + } + + .\32xl\:-inset-x-4 { + right: -1rem; + left: -1rem; + } + + .\32xl\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; + } + + .\32xl\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; + } + + .\32xl\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; + } + + .\32xl\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; + } + + .\32xl\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; + } + + .\32xl\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; + } + + .\32xl\:-inset-y-8 { + top: -2rem; + bottom: -2rem; + } + + .\32xl\:-inset-x-8 { + right: -2rem; + left: -2rem; + } + + .\32xl\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; + } + + .\32xl\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; + } + + .\32xl\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; + } + + .\32xl\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; + } + + .\32xl\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; + } + + .\32xl\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; + } + + .\32xl\:-inset-y-12 { + top: -3rem; + bottom: -3rem; + } + + .\32xl\:-inset-x-12 { + right: -3rem; + left: -3rem; + } + + .\32xl\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .\32xl\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .\32xl\:-inset-y-16 { + top: -4rem; + bottom: -4rem; + } + + .\32xl\:-inset-x-16 { + right: -4rem; + left: -4rem; + } + + .\32xl\:-inset-y-20 { + top: -5rem; + bottom: -5rem; + } + + .\32xl\:-inset-x-20 { + right: -5rem; + left: -5rem; + } + + .\32xl\:-inset-y-24 { + top: -6rem; + bottom: -6rem; + } + + .\32xl\:-inset-x-24 { + right: -6rem; + left: -6rem; + } + + .\32xl\:-inset-y-28 { + top: -7rem; + bottom: -7rem; + } + + .\32xl\:-inset-x-28 { + right: -7rem; + left: -7rem; + } + + .\32xl\:-inset-y-32 { + top: -8rem; + bottom: -8rem; + } + + .\32xl\:-inset-x-32 { + right: -8rem; + left: -8rem; + } + + .\32xl\:-inset-y-36 { + top: -9rem; + bottom: -9rem; + } + + .\32xl\:-inset-x-36 { + right: -9rem; + left: -9rem; + } + + .\32xl\:-inset-y-40 { + top: -10rem; + bottom: -10rem; + } + + .\32xl\:-inset-x-40 { + right: -10rem; + left: -10rem; + } + + .\32xl\:-inset-y-44 { + top: -11rem; + bottom: -11rem; + } + + .\32xl\:-inset-x-44 { + right: -11rem; + left: -11rem; + } + + .\32xl\:-inset-y-48 { + top: -12rem; + bottom: -12rem; + } + + .\32xl\:-inset-x-48 { + right: -12rem; + left: -12rem; + } + + .\32xl\:-inset-y-52 { + top: -13rem; + bottom: -13rem; + } + + .\32xl\:-inset-x-52 { + right: -13rem; + left: -13rem; + } + + .\32xl\:-inset-y-56 { + top: -14rem; + bottom: -14rem; + } + + .\32xl\:-inset-x-56 { + right: -14rem; + left: -14rem; + } + + .\32xl\:-inset-y-60 { + top: -15rem; + bottom: -15rem; + } + + .\32xl\:-inset-x-60 { + right: -15rem; + left: -15rem; + } + + .\32xl\:-inset-y-64 { + top: -16rem; + bottom: -16rem; + } + + .\32xl\:-inset-x-64 { + right: -16rem; + left: -16rem; + } + + .\32xl\:-inset-y-72 { + top: -18rem; + bottom: -18rem; + } + + .\32xl\:-inset-x-72 { + right: -18rem; + left: -18rem; + } + + .\32xl\:-inset-y-80 { + top: -20rem; + bottom: -20rem; + } + + .\32xl\:-inset-x-80 { + right: -20rem; + left: -20rem; + } + + .\32xl\:-inset-y-96 { + top: -24rem; + bottom: -24rem; + } + + .\32xl\:-inset-x-96 { + right: -24rem; + left: -24rem; + } + + .\32xl\:-inset-y-px { + top: -1px; + bottom: -1px; + } + + .\32xl\:-inset-x-px { + right: -1px; + left: -1px; + } + + .\32xl\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .\32xl\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .\32xl\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .\32xl\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .\32xl\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .\32xl\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .\32xl\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-y-1\/2 { + top: 50%; + bottom: 50%; + } + + .\32xl\:inset-x-1\/2 { + right: 50%; + left: 50%; + } + + .\32xl\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; + } + + .\32xl\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; + } + + .\32xl\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-y-1\/4 { + top: 25%; + bottom: 25%; + } + + .\32xl\:inset-x-1\/4 { + right: 25%; + left: 25%; + } + + .\32xl\:inset-y-2\/4 { + top: 50%; + bottom: 50%; + } + + .\32xl\:inset-x-2\/4 { + right: 50%; + left: 50%; + } + + .\32xl\:inset-y-3\/4 { + top: 75%; + bottom: 75%; + } + + .\32xl\:inset-x-3\/4 { + right: 75%; + left: 75%; + } + + .\32xl\:inset-y-full { + top: 100%; + bottom: 100%; + } + + .\32xl\:inset-x-full { + right: 100%; + left: 100%; + } + + .\32xl\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; + } + + .\32xl\:-inset-x-1\/2 { + right: -50%; + left: -50%; + } + + .\32xl\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; + } + + .\32xl\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; + } + + .\32xl\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; + } + + .\32xl\:-inset-x-1\/4 { + right: -25%; + left: -25%; + } + + .\32xl\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; + } + + .\32xl\:-inset-x-2\/4 { + right: -50%; + left: -50%; + } + + .\32xl\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; + } + + .\32xl\:-inset-x-3\/4 { + right: -75%; + left: -75%; + } + + .\32xl\:-inset-y-full { + top: -100%; + bottom: -100%; + } + + .\32xl\:-inset-x-full { + right: -100%; + left: -100%; + } + + .\32xl\:top-0 { + top: 0px; + } + + .\32xl\:right-0 { + right: 0px; + } + + .\32xl\:bottom-0 { + bottom: 0px; + } + + .\32xl\:left-0 { + left: 0px; + } + + .\32xl\:top-1 { + top: 0.25rem; + } + + .\32xl\:right-1 { + right: 0.25rem; + } + + .\32xl\:bottom-1 { + bottom: 0.25rem; + } + + .\32xl\:left-1 { + left: 0.25rem; + } + + .\32xl\:top-2 { + top: 0.5rem; + } + + .\32xl\:right-2 { + right: 0.5rem; + } + + .\32xl\:bottom-2 { + bottom: 0.5rem; + } + + .\32xl\:left-2 { + left: 0.5rem; + } + + .\32xl\:top-3 { + top: 0.75rem; + } + + .\32xl\:right-3 { + right: 0.75rem; + } + + .\32xl\:bottom-3 { + bottom: 0.75rem; + } + + .\32xl\:left-3 { + left: 0.75rem; + } + + .\32xl\:top-4 { + top: 1rem; + } + + .\32xl\:right-4 { + right: 1rem; + } + + .\32xl\:bottom-4 { + bottom: 1rem; + } + + .\32xl\:left-4 { + left: 1rem; + } + + .\32xl\:top-5 { + top: 1.25rem; + } + + .\32xl\:right-5 { + right: 1.25rem; + } + + .\32xl\:bottom-5 { + bottom: 1.25rem; + } + + .\32xl\:left-5 { + left: 1.25rem; + } + + .\32xl\:top-6 { + top: 1.5rem; + } + + .\32xl\:right-6 { + right: 1.5rem; + } + + .\32xl\:bottom-6 { + bottom: 1.5rem; + } + + .\32xl\:left-6 { + left: 1.5rem; + } + + .\32xl\:top-7 { + top: 1.75rem; + } + + .\32xl\:right-7 { + right: 1.75rem; + } + + .\32xl\:bottom-7 { + bottom: 1.75rem; + } + + .\32xl\:left-7 { + left: 1.75rem; + } + + .\32xl\:top-8 { + top: 2rem; + } + + .\32xl\:right-8 { + right: 2rem; + } + + .\32xl\:bottom-8 { + bottom: 2rem; + } + + .\32xl\:left-8 { + left: 2rem; + } + + .\32xl\:top-9 { + top: 2.25rem; + } + + .\32xl\:right-9 { + right: 2.25rem; + } + + .\32xl\:bottom-9 { + bottom: 2.25rem; + } + + .\32xl\:left-9 { + left: 2.25rem; + } + + .\32xl\:top-10 { + top: 2.5rem; + } + + .\32xl\:right-10 { + right: 2.5rem; + } + + .\32xl\:bottom-10 { + bottom: 2.5rem; + } + + .\32xl\:left-10 { + left: 2.5rem; + } + + .\32xl\:top-11 { + top: 2.75rem; + } + + .\32xl\:right-11 { + right: 2.75rem; + } + + .\32xl\:bottom-11 { + bottom: 2.75rem; + } + + .\32xl\:left-11 { + left: 2.75rem; + } + + .\32xl\:top-12 { + top: 3rem; + } + + .\32xl\:right-12 { + right: 3rem; + } + + .\32xl\:bottom-12 { + bottom: 3rem; + } + + .\32xl\:left-12 { + left: 3rem; + } + + .\32xl\:top-14 { + top: 3.5rem; + } + + .\32xl\:right-14 { + right: 3.5rem; + } + + .\32xl\:bottom-14 { + bottom: 3.5rem; + } + + .\32xl\:left-14 { + left: 3.5rem; + } + + .\32xl\:top-16 { + top: 4rem; + } + + .\32xl\:right-16 { + right: 4rem; + } + + .\32xl\:bottom-16 { + bottom: 4rem; + } + + .\32xl\:left-16 { + left: 4rem; + } + + .\32xl\:top-20 { + top: 5rem; + } + + .\32xl\:right-20 { + right: 5rem; + } + + .\32xl\:bottom-20 { + bottom: 5rem; + } + + .\32xl\:left-20 { + left: 5rem; + } + + .\32xl\:top-24 { + top: 6rem; + } + + .\32xl\:right-24 { + right: 6rem; + } + + .\32xl\:bottom-24 { + bottom: 6rem; + } + + .\32xl\:left-24 { + left: 6rem; + } + + .\32xl\:top-28 { + top: 7rem; + } + + .\32xl\:right-28 { + right: 7rem; + } + + .\32xl\:bottom-28 { + bottom: 7rem; + } + + .\32xl\:left-28 { + left: 7rem; + } + + .\32xl\:top-32 { + top: 8rem; + } + + .\32xl\:right-32 { + right: 8rem; + } + + .\32xl\:bottom-32 { + bottom: 8rem; + } + + .\32xl\:left-32 { + left: 8rem; + } + + .\32xl\:top-36 { + top: 9rem; + } + + .\32xl\:right-36 { + right: 9rem; + } + + .\32xl\:bottom-36 { + bottom: 9rem; + } + + .\32xl\:left-36 { + left: 9rem; + } + + .\32xl\:top-40 { + top: 10rem; + } + + .\32xl\:right-40 { + right: 10rem; + } + + .\32xl\:bottom-40 { + bottom: 10rem; + } + + .\32xl\:left-40 { + left: 10rem; + } + + .\32xl\:top-44 { + top: 11rem; + } + + .\32xl\:right-44 { + right: 11rem; + } + + .\32xl\:bottom-44 { + bottom: 11rem; + } + + .\32xl\:left-44 { + left: 11rem; + } + + .\32xl\:top-48 { + top: 12rem; + } + + .\32xl\:right-48 { + right: 12rem; + } + + .\32xl\:bottom-48 { + bottom: 12rem; + } + + .\32xl\:left-48 { + left: 12rem; + } + + .\32xl\:top-52 { + top: 13rem; + } + + .\32xl\:right-52 { + right: 13rem; + } + + .\32xl\:bottom-52 { + bottom: 13rem; + } + + .\32xl\:left-52 { + left: 13rem; + } + + .\32xl\:top-56 { + top: 14rem; + } + + .\32xl\:right-56 { + right: 14rem; + } + + .\32xl\:bottom-56 { + bottom: 14rem; + } + + .\32xl\:left-56 { + left: 14rem; + } + + .\32xl\:top-60 { + top: 15rem; + } + + .\32xl\:right-60 { + right: 15rem; + } + + .\32xl\:bottom-60 { + bottom: 15rem; + } + + .\32xl\:left-60 { + left: 15rem; + } + + .\32xl\:top-64 { + top: 16rem; + } + + .\32xl\:right-64 { + right: 16rem; + } + + .\32xl\:bottom-64 { + bottom: 16rem; + } + + .\32xl\:left-64 { + left: 16rem; + } + + .\32xl\:top-72 { + top: 18rem; + } + + .\32xl\:right-72 { + right: 18rem; + } + + .\32xl\:bottom-72 { + bottom: 18rem; + } + + .\32xl\:left-72 { + left: 18rem; + } + + .\32xl\:top-80 { + top: 20rem; + } + + .\32xl\:right-80 { + right: 20rem; + } + + .\32xl\:bottom-80 { + bottom: 20rem; + } + + .\32xl\:left-80 { + left: 20rem; + } + + .\32xl\:top-96 { + top: 24rem; + } + + .\32xl\:right-96 { + right: 24rem; + } + + .\32xl\:bottom-96 { + bottom: 24rem; + } + + .\32xl\:left-96 { + left: 24rem; + } + + .\32xl\:top-auto { + top: auto; + } + + .\32xl\:right-auto { + right: auto; + } + + .\32xl\:bottom-auto { + bottom: auto; + } + + .\32xl\:left-auto { + left: auto; + } + + .\32xl\:top-px { + top: 1px; + } + + .\32xl\:right-px { + right: 1px; + } + + .\32xl\:bottom-px { + bottom: 1px; + } + + .\32xl\:left-px { + left: 1px; + } + + .\32xl\:top-0\.5 { + top: 0.125rem; + } + + .\32xl\:right-0\.5 { + right: 0.125rem; + } + + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; + } + + .\32xl\:left-0\.5 { + left: 0.125rem; + } + + .\32xl\:top-1\.5 { + top: 0.375rem; + } + + .\32xl\:right-1\.5 { + right: 0.375rem; + } + + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; + } + + .\32xl\:left-1\.5 { + left: 0.375rem; + } + + .\32xl\:top-2\.5 { + top: 0.625rem; + } + + .\32xl\:right-2\.5 { + right: 0.625rem; + } + + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; + } + + .\32xl\:left-2\.5 { + left: 0.625rem; + } + + .\32xl\:top-3\.5 { + top: 0.875rem; + } + + .\32xl\:right-3\.5 { + right: 0.875rem; + } + + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; + } + + .\32xl\:left-3\.5 { + left: 0.875rem; + } + + .\32xl\:-top-0 { + top: 0px; + } + + .\32xl\:-right-0 { + right: 0px; + } + + .\32xl\:-bottom-0 { + bottom: 0px; + } + + .\32xl\:-left-0 { + left: 0px; + } + + .\32xl\:-top-1 { + top: -0.25rem; + } + + .\32xl\:-right-1 { + right: -0.25rem; + } + + .\32xl\:-bottom-1 { + bottom: -0.25rem; + } + + .\32xl\:-left-1 { + left: -0.25rem; + } + + .\32xl\:-top-2 { + top: -0.5rem; + } + + .\32xl\:-right-2 { + right: -0.5rem; + } + + .\32xl\:-bottom-2 { + bottom: -0.5rem; + } + + .\32xl\:-left-2 { + left: -0.5rem; + } + + .\32xl\:-top-3 { + top: -0.75rem; + } + + .\32xl\:-right-3 { + right: -0.75rem; + } + + .\32xl\:-bottom-3 { + bottom: -0.75rem; + } + + .\32xl\:-left-3 { + left: -0.75rem; + } + + .\32xl\:-top-4 { + top: -1rem; + } + + .\32xl\:-right-4 { + right: -1rem; + } + + .\32xl\:-bottom-4 { + bottom: -1rem; + } + + .\32xl\:-left-4 { + left: -1rem; + } + + .\32xl\:-top-5 { + top: -1.25rem; + } + + .\32xl\:-right-5 { + right: -1.25rem; + } + + .\32xl\:-bottom-5 { + bottom: -1.25rem; + } + + .\32xl\:-left-5 { + left: -1.25rem; + } + + .\32xl\:-top-6 { + top: -1.5rem; + } + + .\32xl\:-right-6 { + right: -1.5rem; + } + + .\32xl\:-bottom-6 { + bottom: -1.5rem; + } + + .\32xl\:-left-6 { + left: -1.5rem; + } + + .\32xl\:-top-7 { + top: -1.75rem; + } + + .\32xl\:-right-7 { + right: -1.75rem; + } + + .\32xl\:-bottom-7 { + bottom: -1.75rem; + } + + .\32xl\:-left-7 { + left: -1.75rem; + } + + .\32xl\:-top-8 { + top: -2rem; + } + + .\32xl\:-right-8 { + right: -2rem; + } + + .\32xl\:-bottom-8 { + bottom: -2rem; + } + + .\32xl\:-left-8 { + left: -2rem; + } + + .\32xl\:-top-9 { + top: -2.25rem; + } + + .\32xl\:-right-9 { + right: -2.25rem; + } + + .\32xl\:-bottom-9 { + bottom: -2.25rem; + } + + .\32xl\:-left-9 { + left: -2.25rem; + } + + .\32xl\:-top-10 { + top: -2.5rem; + } + + .\32xl\:-right-10 { + right: -2.5rem; + } + + .\32xl\:-bottom-10 { + bottom: -2.5rem; + } + + .\32xl\:-left-10 { + left: -2.5rem; + } + + .\32xl\:-top-11 { + top: -2.75rem; + } + + .\32xl\:-right-11 { + right: -2.75rem; + } + + .\32xl\:-bottom-11 { + bottom: -2.75rem; + } + + .\32xl\:-left-11 { + left: -2.75rem; + } + + .\32xl\:-top-12 { + top: -3rem; + } + + .\32xl\:-right-12 { + right: -3rem; + } + + .\32xl\:-bottom-12 { + bottom: -3rem; + } + + .\32xl\:-left-12 { + left: -3rem; + } + + .\32xl\:-top-14 { + top: -3.5rem; + } + + .\32xl\:-right-14 { + right: -3.5rem; + } + + .\32xl\:-bottom-14 { + bottom: -3.5rem; + } + + .\32xl\:-left-14 { + left: -3.5rem; + } + + .\32xl\:-top-16 { + top: -4rem; + } + + .\32xl\:-right-16 { + right: -4rem; + } + + .\32xl\:-bottom-16 { + bottom: -4rem; + } + + .\32xl\:-left-16 { + left: -4rem; + } + + .\32xl\:-top-20 { + top: -5rem; + } + + .\32xl\:-right-20 { + right: -5rem; + } + + .\32xl\:-bottom-20 { + bottom: -5rem; + } + + .\32xl\:-left-20 { + left: -5rem; + } + + .\32xl\:-top-24 { + top: -6rem; + } + + .\32xl\:-right-24 { + right: -6rem; + } + + .\32xl\:-bottom-24 { + bottom: -6rem; + } + + .\32xl\:-left-24 { + left: -6rem; + } + + .\32xl\:-top-28 { + top: -7rem; + } + + .\32xl\:-right-28 { + right: -7rem; + } + + .\32xl\:-bottom-28 { + bottom: -7rem; + } + + .\32xl\:-left-28 { + left: -7rem; + } + + .\32xl\:-top-32 { + top: -8rem; + } + + .\32xl\:-right-32 { + right: -8rem; + } + + .\32xl\:-bottom-32 { + bottom: -8rem; + } + + .\32xl\:-left-32 { + left: -8rem; + } + + .\32xl\:-top-36 { + top: -9rem; + } + + .\32xl\:-right-36 { + right: -9rem; + } + + .\32xl\:-bottom-36 { + bottom: -9rem; + } + + .\32xl\:-left-36 { + left: -9rem; + } + + .\32xl\:-top-40 { + top: -10rem; + } + + .\32xl\:-right-40 { + right: -10rem; + } + + .\32xl\:-bottom-40 { + bottom: -10rem; + } + + .\32xl\:-left-40 { + left: -10rem; + } + + .\32xl\:-top-44 { + top: -11rem; + } + + .\32xl\:-right-44 { + right: -11rem; + } + + .\32xl\:-bottom-44 { + bottom: -11rem; + } + + .\32xl\:-left-44 { + left: -11rem; + } + + .\32xl\:-top-48 { + top: -12rem; + } + + .\32xl\:-right-48 { + right: -12rem; + } + + .\32xl\:-bottom-48 { + bottom: -12rem; + } + + .\32xl\:-left-48 { + left: -12rem; + } + + .\32xl\:-top-52 { + top: -13rem; + } + + .\32xl\:-right-52 { + right: -13rem; + } + + .\32xl\:-bottom-52 { + bottom: -13rem; + } + + .\32xl\:-left-52 { + left: -13rem; + } + + .\32xl\:-top-56 { + top: -14rem; + } + + .\32xl\:-right-56 { + right: -14rem; + } + + .\32xl\:-bottom-56 { + bottom: -14rem; + } + + .\32xl\:-left-56 { + left: -14rem; + } + + .\32xl\:-top-60 { + top: -15rem; + } + + .\32xl\:-right-60 { + right: -15rem; + } + + .\32xl\:-bottom-60 { + bottom: -15rem; + } + + .\32xl\:-left-60 { + left: -15rem; + } + + .\32xl\:-top-64 { + top: -16rem; + } + + .\32xl\:-right-64 { + right: -16rem; + } + + .\32xl\:-bottom-64 { + bottom: -16rem; + } + + .\32xl\:-left-64 { + left: -16rem; + } + + .\32xl\:-top-72 { + top: -18rem; + } + + .\32xl\:-right-72 { + right: -18rem; + } + + .\32xl\:-bottom-72 { + bottom: -18rem; + } + + .\32xl\:-left-72 { + left: -18rem; + } + + .\32xl\:-top-80 { + top: -20rem; + } + + .\32xl\:-right-80 { + right: -20rem; + } + + .\32xl\:-bottom-80 { + bottom: -20rem; + } + + .\32xl\:-left-80 { + left: -20rem; + } + + .\32xl\:-top-96 { + top: -24rem; + } + + .\32xl\:-right-96 { + right: -24rem; + } + + .\32xl\:-bottom-96 { + bottom: -24rem; + } + + .\32xl\:-left-96 { + left: -24rem; + } + + .\32xl\:-top-px { + top: -1px; + } + + .\32xl\:-right-px { + right: -1px; + } + + .\32xl\:-bottom-px { + bottom: -1px; + } + + .\32xl\:-left-px { + left: -1px; + } + + .\32xl\:-top-0\.5 { + top: -0.125rem; + } + + .\32xl\:-right-0\.5 { + right: -0.125rem; + } + + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .\32xl\:-left-0\.5 { + left: -0.125rem; + } + + .\32xl\:-top-1\.5 { + top: -0.375rem; + } + + .\32xl\:-right-1\.5 { + right: -0.375rem; + } + + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .\32xl\:-left-1\.5 { + left: -0.375rem; + } + + .\32xl\:-top-2\.5 { + top: -0.625rem; + } + + .\32xl\:-right-2\.5 { + right: -0.625rem; + } + + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .\32xl\:-left-2\.5 { + left: -0.625rem; + } + + .\32xl\:-top-3\.5 { + top: -0.875rem; + } + + .\32xl\:-right-3\.5 { + right: -0.875rem; + } + + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .\32xl\:-left-3\.5 { + left: -0.875rem; + } + + .\32xl\:top-1\/2 { + top: 50%; + } + + .\32xl\:right-1\/2 { + right: 50%; + } + + .\32xl\:bottom-1\/2 { + bottom: 50%; + } + + .\32xl\:left-1\/2 { + left: 50%; + } + + .\32xl\:top-1\/3 { + top: 33.333333%; + } + + .\32xl\:right-1\/3 { + right: 33.333333%; + } + + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; + } + + .\32xl\:left-1\/3 { + left: 33.333333%; + } + + .\32xl\:top-2\/3 { + top: 66.666667%; + } + + .\32xl\:right-2\/3 { + right: 66.666667%; + } + + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; + } + + .\32xl\:left-2\/3 { + left: 66.666667%; + } + + .\32xl\:top-1\/4 { + top: 25%; + } + + .\32xl\:right-1\/4 { + right: 25%; + } + + .\32xl\:bottom-1\/4 { + bottom: 25%; + } + + .\32xl\:left-1\/4 { + left: 25%; + } + + .\32xl\:top-2\/4 { + top: 50%; + } + + .\32xl\:right-2\/4 { + right: 50%; + } + + .\32xl\:bottom-2\/4 { + bottom: 50%; + } + + .\32xl\:left-2\/4 { + left: 50%; + } + + .\32xl\:top-3\/4 { + top: 75%; + } + + .\32xl\:right-3\/4 { + right: 75%; + } + + .\32xl\:bottom-3\/4 { + bottom: 75%; + } + + .\32xl\:left-3\/4 { + left: 75%; + } + + .\32xl\:top-full { + top: 100%; + } + + .\32xl\:right-full { + right: 100%; + } + + .\32xl\:bottom-full { + bottom: 100%; + } + + .\32xl\:left-full { + left: 100%; + } + + .\32xl\:-top-1\/2 { + top: -50%; + } + + .\32xl\:-right-1\/2 { + right: -50%; + } + + .\32xl\:-bottom-1\/2 { + bottom: -50%; + } + + .\32xl\:-left-1\/2 { + left: -50%; + } + + .\32xl\:-top-1\/3 { + top: -33.333333%; + } + + .\32xl\:-right-1\/3 { + right: -33.333333%; + } + + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; + } + + .\32xl\:-left-1\/3 { + left: -33.333333%; + } + + .\32xl\:-top-2\/3 { + top: -66.666667%; + } + + .\32xl\:-right-2\/3 { + right: -66.666667%; + } + + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; + } + + .\32xl\:-left-2\/3 { + left: -66.666667%; + } + + .\32xl\:-top-1\/4 { + top: -25%; + } + + .\32xl\:-right-1\/4 { + right: -25%; + } + + .\32xl\:-bottom-1\/4 { + bottom: -25%; + } + + .\32xl\:-left-1\/4 { + left: -25%; + } + + .\32xl\:-top-2\/4 { + top: -50%; + } + + .\32xl\:-right-2\/4 { + right: -50%; + } + + .\32xl\:-bottom-2\/4 { + bottom: -50%; + } + + .\32xl\:-left-2\/4 { + left: -50%; + } + + .\32xl\:-top-3\/4 { + top: -75%; + } + + .\32xl\:-right-3\/4 { + right: -75%; + } + + .\32xl\:-bottom-3\/4 { + bottom: -75%; + } + + .\32xl\:-left-3\/4 { + left: -75%; + } + + .\32xl\:-top-full { + top: -100%; + } + + .\32xl\:-right-full { + right: -100%; + } + + .\32xl\:-bottom-full { + bottom: -100%; + } + + .\32xl\:-left-full { + left: -100%; + } + + .\32xl\:resize-none { + resize: none; + } + + .\32xl\:resize-y { + resize: vertical; + } + + .\32xl\:resize-x { + resize: horizontal; + } + + .\32xl\:resize { + resize: both; + } + + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-inset { + --tw-ring-inset: inset; + } + + .\32xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .\32xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .\32xl\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .\32xl\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .\32xl\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .\32xl\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .\32xl\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .\32xl\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .\32xl\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .\32xl\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .\32xl\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .\32xl\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .\32xl\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .\32xl\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .\32xl\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .\32xl\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .\32xl\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .\32xl\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .\32xl\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .\32xl\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .\32xl\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .\32xl\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .\32xl\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .\32xl\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .\32xl\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .\32xl\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .\32xl\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .\32xl\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .\32xl\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .\32xl\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .\32xl\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .\32xl\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .\32xl\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .\32xl\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .\32xl\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .\32xl\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .\32xl\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .\32xl\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .\32xl\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .\32xl\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .\32xl\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .\32xl\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .\32xl\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .\32xl\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .\32xl\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .\32xl\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .\32xl\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .\32xl\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .\32xl\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .\32xl\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .\32xl\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .\32xl\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .\32xl\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .\32xl\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .\32xl\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .\32xl\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .\32xl\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .\32xl\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .\32xl\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .\32xl\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .\32xl\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .\32xl\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .\32xl\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .\32xl\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .\32xl\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .\32xl\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .\32xl\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .\32xl\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .\32xl\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .\32xl\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .\32xl\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .\32xl\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .\32xl\:ring-current { + --tw-ring-color: currentColor; + } + + .\32xl\:ring-transparent { + --tw-ring-color: transparent; + } + + .\32xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .\32xl\:fill-current { + fill: currentColor; + } + + .\32xl\:stroke-current { + stroke: currentColor; + } + + .\32xl\:stroke-0 { + stroke-width: 0; + } + + .\32xl\:stroke-1 { + stroke-width: 1; + } + + .\32xl\:stroke-2 { + stroke-width: 2; + } + + .\32xl\:table-auto { + table-layout: auto; + } + + .\32xl\:table-fixed { + table-layout: fixed; + } + + .\32xl\:text-left { + text-align: left; + } + + .\32xl\:text-center { + text-align: center; + } + + .\32xl\:text-right { + text-align: right; + } + + .\32xl\:text-justify { + text-align: justify; + } + + .\32xl\:text-current { + color: currentColor; + } + + .\32xl\:text-transparent { + color: transparent; + } + + .\32xl\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .\32xl\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .\32xl\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .\32xl\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .\32xl\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-current:hover { + color: currentColor; + } + + .\32xl\:hover\:text-transparent:hover { + color: transparent; + } + + .\32xl\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-current:focus { + color: currentColor; + } + + .\32xl\:focus\:text-transparent:focus { + color: transparent; + } + + .\32xl\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .\32xl\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .\32xl\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .\32xl\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .\32xl\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .\32xl\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .\32xl\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .\32xl\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .\32xl\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .\32xl\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .\32xl\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .\32xl\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .\32xl\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .\32xl\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .\32xl\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .\32xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .\32xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .\32xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .\32xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .\32xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .\32xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .\32xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .\32xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .\32xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .\32xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .\32xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .\32xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .\32xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .\32xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .\32xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .\32xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .\32xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .\32xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .\32xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .\32xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .\32xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .\32xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .\32xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .\32xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .\32xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .\32xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .\32xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .\32xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .\32xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .\32xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .\32xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .\32xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .\32xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .\32xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .\32xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .\32xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .\32xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .\32xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .\32xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .\32xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .\32xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .\32xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .\32xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .\32xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .\32xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .\32xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .\32xl\:overflow-clip { + text-overflow: clip; + } + + .\32xl\:italic { + font-style: italic; + } + + .\32xl\:not-italic { + font-style: normal; + } + + .\32xl\:uppercase { + text-transform: uppercase; + } + + .\32xl\:lowercase { + text-transform: lowercase; + } + + .\32xl\:capitalize { + text-transform: capitalize; + } + + .\32xl\:normal-case { + text-transform: none; + } + + .\32xl\:underline { + text-decoration: underline; + } + + .\32xl\:line-through { + text-decoration: line-through; + } + + .\32xl\:no-underline { + text-decoration: none; + } + + .group:hover .\32xl\:group-hover\:underline { + text-decoration: underline; + } + + .group:hover .\32xl\:group-hover\:line-through { + text-decoration: line-through; + } + + .group:hover .\32xl\:group-hover\:no-underline { + text-decoration: none; + } + + .\32xl\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .\32xl\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .\32xl\:focus-within\:no-underline:focus-within { + text-decoration: none; + } + + .\32xl\:hover\:underline:hover { + text-decoration: underline; + } + + .\32xl\:hover\:line-through:hover { + text-decoration: line-through; + } + + .\32xl\:hover\:no-underline:hover { + text-decoration: none; + } + + .\32xl\:focus\:underline:focus { + text-decoration: underline; + } + + .\32xl\:focus\:line-through:focus { + text-decoration: line-through; + } + + .\32xl\:focus\:no-underline:focus { + text-decoration: none; + } + + .\32xl\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .\32xl\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .\32xl\:normal-nums { + font-variant-numeric: normal; + } + + .\32xl\:ordinal { + --tw-ordinal: ordinal; + } + + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .\32xl\:tracking-tighter { + letter-spacing: -0.02em; + } + + .\32xl\:tracking-tight { + letter-spacing: -1px; + } + + .\32xl\:tracking-normal { + letter-spacing: 0em; + } + + .\32xl\:tracking-wide { + letter-spacing: 0.03em; + } + + .\32xl\:tracking-wider { + letter-spacing: 0.08em; + } + + .\32xl\:tracking-widest { + letter-spacing: 0.1em; + } + + .\32xl\:select-none { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .\32xl\:select-text { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .\32xl\:select-all { + -webkit-user-select: all; + -moz-user-select: all; + -ms-user-select: all; + user-select: all; + } + + .\32xl\:select-auto { + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .\32xl\:align-baseline { + vertical-align: baseline; + } + + .\32xl\:align-top { + vertical-align: top; + } + + .\32xl\:align-middle { + vertical-align: middle; + } + + .\32xl\:align-bottom { + vertical-align: bottom; + } + + .\32xl\:align-text-top { + vertical-align: text-top; + } + + .\32xl\:align-text-bottom { + vertical-align: text-bottom; + } + + .\32xl\:visible { + visibility: visible; + } + + .\32xl\:invisible { + visibility: hidden; + } + + .\32xl\:whitespace-normal { + white-space: normal; + } + + .\32xl\:whitespace-nowrap { + white-space: nowrap; + } + + .\32xl\:whitespace-pre { + white-space: pre; + } + + .\32xl\:whitespace-pre-line { + white-space: pre-line; + } + + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .\32xl\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .\32xl\:break-words { + overflow-wrap: break-word; + } + + .\32xl\:break-all { + word-break: break-all; + } + + .\32xl\:w-0 { + width: 0px; + } + + .\32xl\:w-1 { + width: 0.25rem; + } + + .\32xl\:w-2 { + width: 0.5rem; + } + + .\32xl\:w-3 { + width: 0.75rem; + } + + .\32xl\:w-4 { + width: 1rem; + } + + .\32xl\:w-5 { + width: 1.25rem; + } + + .\32xl\:w-6 { + width: 1.5rem; + } + + .\32xl\:w-7 { + width: 1.75rem; + } + + .\32xl\:w-8 { + width: 2rem; + } + + .\32xl\:w-9 { + width: 2.25rem; + } + + .\32xl\:w-10 { + width: 2.5rem; + } + + .\32xl\:w-11 { + width: 2.75rem; + } + + .\32xl\:w-12 { + width: 3rem; + } + + .\32xl\:w-14 { + width: 3.5rem; + } + + .\32xl\:w-16 { + width: 4rem; + } + + .\32xl\:w-20 { + width: 5rem; + } + + .\32xl\:w-24 { + width: 6rem; + } + + .\32xl\:w-28 { + width: 7rem; + } + + .\32xl\:w-32 { + width: 8rem; + } + + .\32xl\:w-36 { + width: 9rem; + } + + .\32xl\:w-40 { + width: 10rem; + } + + .\32xl\:w-44 { + width: 11rem; + } + + .\32xl\:w-48 { + width: 12rem; + } + + .\32xl\:w-52 { + width: 13rem; + } + + .\32xl\:w-56 { + width: 14rem; + } + + .\32xl\:w-60 { + width: 15rem; + } + + .\32xl\:w-64 { + width: 16rem; + } + + .\32xl\:w-72 { + width: 18rem; + } + + .\32xl\:w-80 { + width: 20rem; + } + + .\32xl\:w-96 { + width: 24rem; + } + + .\32xl\:w-auto { + width: auto; + } + + .\32xl\:w-px { + width: 1px; + } + + .\32xl\:w-0\.5 { + width: 0.125rem; + } + + .\32xl\:w-1\.5 { + width: 0.375rem; + } + + .\32xl\:w-2\.5 { + width: 0.625rem; + } + + .\32xl\:w-3\.5 { + width: 0.875rem; + } + + .\32xl\:w-1\/2 { + width: 50%; + } + + .\32xl\:w-1\/3 { + width: 33.333333%; + } + + .\32xl\:w-2\/3 { + width: 66.666667%; + } + + .\32xl\:w-1\/4 { + width: 25%; + } + + .\32xl\:w-2\/4 { + width: 50%; + } + + .\32xl\:w-3\/4 { + width: 75%; + } + + .\32xl\:w-1\/5 { + width: 20%; + } + + .\32xl\:w-2\/5 { + width: 40%; + } + + .\32xl\:w-3\/5 { + width: 60%; + } + + .\32xl\:w-4\/5 { + width: 80%; + } + + .\32xl\:w-1\/6 { + width: 16.666667%; + } + + .\32xl\:w-2\/6 { + width: 33.333333%; + } + + .\32xl\:w-3\/6 { + width: 50%; + } + + .\32xl\:w-4\/6 { + width: 66.666667%; + } + + .\32xl\:w-5\/6 { + width: 83.333333%; + } + + .\32xl\:w-1\/12 { + width: 8.333333%; + } + + .\32xl\:w-2\/12 { + width: 16.666667%; + } + + .\32xl\:w-3\/12 { + width: 25%; + } + + .\32xl\:w-4\/12 { + width: 33.333333%; + } + + .\32xl\:w-5\/12 { + width: 41.666667%; + } + + .\32xl\:w-6\/12 { + width: 50%; + } + + .\32xl\:w-7\/12 { + width: 58.333333%; + } + + .\32xl\:w-8\/12 { + width: 66.666667%; + } + + .\32xl\:w-9\/12 { + width: 75%; + } + + .\32xl\:w-10\/12 { + width: 83.333333%; + } + + .\32xl\:w-11\/12 { + width: 91.666667%; + } + + .\32xl\:w-full { + width: 100%; + } + + .\32xl\:w-screen { + width: 100vw; + } + + .\32xl\:z-0 { + z-index: 0; + } + + .\32xl\:z-10 { + z-index: 10; + } + + .\32xl\:z-20 { + z-index: 20; + } + + .\32xl\:z-30 { + z-index: 30; + } + + .\32xl\:z-40 { + z-index: 40; + } + + .\32xl\:z-50 { + z-index: 50; + } + + .\32xl\:z-auto { + z-index: auto; + } + + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0; + } + + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10; + } + + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20; + } + + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30; + } + + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40; + } + + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50; + } + + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto; + } + + .\32xl\:focus\:z-0:focus { + z-index: 0; + } + + .\32xl\:focus\:z-10:focus { + z-index: 10; + } + + .\32xl\:focus\:z-20:focus { + z-index: 20; + } + + .\32xl\:focus\:z-30:focus { + z-index: 30; + } + + .\32xl\:focus\:z-40:focus { + z-index: 40; + } + + .\32xl\:focus\:z-50:focus { + z-index: 50; + } + + .\32xl\:focus\:z-auto:focus { + z-index: auto; + } + + .\32xl\:gap-0 { + gap: 0px; + } + + .\32xl\:gap-1 { + gap: 0.25rem; + } + + .\32xl\:gap-2 { + gap: 0.5rem; + } + + .\32xl\:gap-3 { + gap: 0.75rem; + } + + .\32xl\:gap-4 { + gap: 1rem; + } + + .\32xl\:gap-5 { + gap: 1.25rem; + } + + .\32xl\:gap-6 { + gap: 1.5rem; + } + + .\32xl\:gap-7 { + gap: 1.75rem; + } + + .\32xl\:gap-8 { + gap: 2rem; + } + + .\32xl\:gap-9 { + gap: 2.25rem; + } + + .\32xl\:gap-10 { + gap: 2.5rem; + } + + .\32xl\:gap-11 { + gap: 2.75rem; + } + + .\32xl\:gap-12 { + gap: 3rem; + } + + .\32xl\:gap-14 { + gap: 3.5rem; + } + + .\32xl\:gap-16 { + gap: 4rem; + } + + .\32xl\:gap-20 { + gap: 5rem; + } + + .\32xl\:gap-24 { + gap: 6rem; + } + + .\32xl\:gap-28 { + gap: 7rem; + } + + .\32xl\:gap-32 { + gap: 8rem; + } + + .\32xl\:gap-36 { + gap: 9rem; + } + + .\32xl\:gap-40 { + gap: 10rem; + } + + .\32xl\:gap-44 { + gap: 11rem; + } + + .\32xl\:gap-48 { + gap: 12rem; + } + + .\32xl\:gap-52 { + gap: 13rem; + } + + .\32xl\:gap-56 { + gap: 14rem; + } + + .\32xl\:gap-60 { + gap: 15rem; + } + + .\32xl\:gap-64 { + gap: 16rem; + } + + .\32xl\:gap-72 { + gap: 18rem; + } + + .\32xl\:gap-80 { + gap: 20rem; + } + + .\32xl\:gap-96 { + gap: 24rem; + } + + .\32xl\:gap-px { + gap: 1px; + } + + .\32xl\:gap-0\.5 { + gap: 0.125rem; + } + + .\32xl\:gap-1\.5 { + gap: 0.375rem; + } + + .\32xl\:gap-2\.5 { + gap: 0.625rem; + } + + .\32xl\:gap-3\.5 { + gap: 0.875rem; + } + + .\32xl\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .\32xl\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .\32xl\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .\32xl\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .\32xl\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .\32xl\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .\32xl\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .\32xl\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .\32xl\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .\32xl\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .\32xl\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .\32xl\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .\32xl\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .\32xl\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .\32xl\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .\32xl\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .\32xl\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .\32xl\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .\32xl\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .\32xl\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .\32xl\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .\32xl\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .\32xl\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .\32xl\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .\32xl\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .\32xl\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .\32xl\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .\32xl\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .\32xl\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .\32xl\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .\32xl\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .\32xl\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .\32xl\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .\32xl\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .\32xl\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .\32xl\:gap-y-0 { + row-gap: 0px; + } + + .\32xl\:gap-y-1 { + row-gap: 0.25rem; + } + + .\32xl\:gap-y-2 { + row-gap: 0.5rem; + } + + .\32xl\:gap-y-3 { + row-gap: 0.75rem; + } + + .\32xl\:gap-y-4 { + row-gap: 1rem; + } + + .\32xl\:gap-y-5 { + row-gap: 1.25rem; + } + + .\32xl\:gap-y-6 { + row-gap: 1.5rem; + } + + .\32xl\:gap-y-7 { + row-gap: 1.75rem; + } + + .\32xl\:gap-y-8 { + row-gap: 2rem; + } + + .\32xl\:gap-y-9 { + row-gap: 2.25rem; + } + + .\32xl\:gap-y-10 { + row-gap: 2.5rem; + } + + .\32xl\:gap-y-11 { + row-gap: 2.75rem; + } + + .\32xl\:gap-y-12 { + row-gap: 3rem; + } + + .\32xl\:gap-y-14 { + row-gap: 3.5rem; + } + + .\32xl\:gap-y-16 { + row-gap: 4rem; + } + + .\32xl\:gap-y-20 { + row-gap: 5rem; + } + + .\32xl\:gap-y-24 { + row-gap: 6rem; + } + + .\32xl\:gap-y-28 { + row-gap: 7rem; + } + + .\32xl\:gap-y-32 { + row-gap: 8rem; + } + + .\32xl\:gap-y-36 { + row-gap: 9rem; + } + + .\32xl\:gap-y-40 { + row-gap: 10rem; + } + + .\32xl\:gap-y-44 { + row-gap: 11rem; + } + + .\32xl\:gap-y-48 { + row-gap: 12rem; + } + + .\32xl\:gap-y-52 { + row-gap: 13rem; + } + + .\32xl\:gap-y-56 { + row-gap: 14rem; + } + + .\32xl\:gap-y-60 { + row-gap: 15rem; + } + + .\32xl\:gap-y-64 { + row-gap: 16rem; + } + + .\32xl\:gap-y-72 { + row-gap: 18rem; + } + + .\32xl\:gap-y-80 { + row-gap: 20rem; + } + + .\32xl\:gap-y-96 { + row-gap: 24rem; + } + + .\32xl\:gap-y-px { + row-gap: 1px; + } + + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .\32xl\:grid-flow-row { + grid-auto-flow: row; + } + + .\32xl\:grid-flow-col { + grid-auto-flow: column; + } + + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-none { + grid-template-columns: none; + } + + .\32xl\:auto-cols-auto { + grid-auto-columns: auto; + } + + .\32xl\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .\32xl\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .\32xl\:col-auto { + grid-column: auto; + } + + .\32xl\:col-span-1 { + grid-column: span 1 / span 1; + } + + .\32xl\:col-span-2 { + grid-column: span 2 / span 2; + } + + .\32xl\:col-span-3 { + grid-column: span 3 / span 3; + } + + .\32xl\:col-span-4 { + grid-column: span 4 / span 4; + } + + .\32xl\:col-span-5 { + grid-column: span 5 / span 5; + } + + .\32xl\:col-span-6 { + grid-column: span 6 / span 6; + } + + .\32xl\:col-span-7 { + grid-column: span 7 / span 7; + } + + .\32xl\:col-span-8 { + grid-column: span 8 / span 8; + } + + .\32xl\:col-span-9 { + grid-column: span 9 / span 9; + } + + .\32xl\:col-span-10 { + grid-column: span 10 / span 10; + } + + .\32xl\:col-span-11 { + grid-column: span 11 / span 11; + } + + .\32xl\:col-span-12 { + grid-column: span 12 / span 12; + } + + .\32xl\:col-span-full { + grid-column: 1 / -1; + } + + .\32xl\:col-start-1 { + grid-column-start: 1; + } + + .\32xl\:col-start-2 { + grid-column-start: 2; + } + + .\32xl\:col-start-3 { + grid-column-start: 3; + } + + .\32xl\:col-start-4 { + grid-column-start: 4; + } + + .\32xl\:col-start-5 { + grid-column-start: 5; + } + + .\32xl\:col-start-6 { + grid-column-start: 6; + } + + .\32xl\:col-start-7 { + grid-column-start: 7; + } + + .\32xl\:col-start-8 { + grid-column-start: 8; + } + + .\32xl\:col-start-9 { + grid-column-start: 9; + } + + .\32xl\:col-start-10 { + grid-column-start: 10; + } + + .\32xl\:col-start-11 { + grid-column-start: 11; + } + + .\32xl\:col-start-12 { + grid-column-start: 12; + } + + .\32xl\:col-start-13 { + grid-column-start: 13; + } + + .\32xl\:col-start-auto { + grid-column-start: auto; + } + + .\32xl\:col-end-1 { + grid-column-end: 1; + } + + .\32xl\:col-end-2 { + grid-column-end: 2; + } + + .\32xl\:col-end-3 { + grid-column-end: 3; + } + + .\32xl\:col-end-4 { + grid-column-end: 4; + } + + .\32xl\:col-end-5 { + grid-column-end: 5; + } + + .\32xl\:col-end-6 { + grid-column-end: 6; + } + + .\32xl\:col-end-7 { + grid-column-end: 7; + } + + .\32xl\:col-end-8 { + grid-column-end: 8; + } + + .\32xl\:col-end-9 { + grid-column-end: 9; + } + + .\32xl\:col-end-10 { + grid-column-end: 10; + } + + .\32xl\:col-end-11 { + grid-column-end: 11; + } + + .\32xl\:col-end-12 { + grid-column-end: 12; + } + + .\32xl\:col-end-13 { + grid-column-end: 13; + } + + .\32xl\:col-end-auto { + grid-column-end: auto; + } + + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-none { + grid-template-rows: none; + } + + .\32xl\:auto-rows-auto { + grid-auto-rows: auto; + } + + .\32xl\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .\32xl\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .\32xl\:row-auto { + grid-row: auto; + } + + .\32xl\:row-span-1 { + grid-row: span 1 / span 1; + } + + .\32xl\:row-span-2 { + grid-row: span 2 / span 2; + } + + .\32xl\:row-span-3 { + grid-row: span 3 / span 3; + } + + .\32xl\:row-span-4 { + grid-row: span 4 / span 4; + } + + .\32xl\:row-span-5 { + grid-row: span 5 / span 5; + } + + .\32xl\:row-span-6 { + grid-row: span 6 / span 6; + } + + .\32xl\:row-span-full { + grid-row: 1 / -1; + } + + .\32xl\:row-start-1 { + grid-row-start: 1; + } + + .\32xl\:row-start-2 { + grid-row-start: 2; + } + + .\32xl\:row-start-3 { + grid-row-start: 3; + } + + .\32xl\:row-start-4 { + grid-row-start: 4; + } + + .\32xl\:row-start-5 { + grid-row-start: 5; + } + + .\32xl\:row-start-6 { + grid-row-start: 6; + } + + .\32xl\:row-start-7 { + grid-row-start: 7; + } + + .\32xl\:row-start-auto { + grid-row-start: auto; + } + + .\32xl\:row-end-1 { + grid-row-end: 1; + } + + .\32xl\:row-end-2 { + grid-row-end: 2; + } + + .\32xl\:row-end-3 { + grid-row-end: 3; + } + + .\32xl\:row-end-4 { + grid-row-end: 4; + } + + .\32xl\:row-end-5 { + grid-row-end: 5; + } + + .\32xl\:row-end-6 { + grid-row-end: 6; + } + + .\32xl\:row-end-7 { + grid-row-end: 7; + } + + .\32xl\:row-end-auto { + grid-row-end: auto; + } + + .\32xl\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .\32xl\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .\32xl\:transform-none { + transform: none; + } + + .\32xl\:origin-center { + transform-origin: center; + } + + .\32xl\:origin-top { + transform-origin: top; + } + + .\32xl\:origin-top-right { + transform-origin: top right; + } + + .\32xl\:origin-right { + transform-origin: right; + } + + .\32xl\:origin-bottom-right { + transform-origin: bottom right; + } + + .\32xl\:origin-bottom { + transform-origin: bottom; + } + + .\32xl\:origin-bottom-left { + transform-origin: bottom left; + } + + .\32xl\:origin-left { + transform-origin: left; + } + + .\32xl\:origin-top-left { + transform-origin: top left; + } + + .\32xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:scale-x-0 { + --tw-scale-x: 0; + } + + .\32xl\:scale-x-50 { + --tw-scale-x: .5; + } + + .\32xl\:scale-x-75 { + --tw-scale-x: .75; + } + + .\32xl\:scale-x-90 { + --tw-scale-x: .9; + } + + .\32xl\:scale-x-95 { + --tw-scale-x: .95; + } + + .\32xl\:scale-x-100 { + --tw-scale-x: 1; + } + + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .\32xl\:rotate-0 { + --tw-rotate: 0deg; + } + + .\32xl\:rotate-1 { + --tw-rotate: 1deg; + } + + .\32xl\:rotate-2 { + --tw-rotate: 2deg; + } + + .\32xl\:rotate-3 { + --tw-rotate: 3deg; + } + + .\32xl\:rotate-6 { + --tw-rotate: 6deg; + } + + .\32xl\:rotate-12 { + --tw-rotate: 12deg; + } + + .\32xl\:rotate-45 { + --tw-rotate: 45deg; + } + + .\32xl\:rotate-90 { + --tw-rotate: 90deg; + } + + .\32xl\:rotate-180 { + --tw-rotate: 180deg; + } + + .\32xl\:-rotate-180 { + --tw-rotate: -180deg; + } + + .\32xl\:-rotate-90 { + --tw-rotate: -90deg; + } + + .\32xl\:-rotate-45 { + --tw-rotate: -45deg; + } + + .\32xl\:-rotate-12 { + --tw-rotate: -12deg; + } + + .\32xl\:-rotate-6 { + --tw-rotate: -6deg; + } + + .\32xl\:-rotate-3 { + --tw-rotate: -3deg; + } + + .\32xl\:-rotate-2 { + --tw-rotate: -2deg; + } + + .\32xl\:-rotate-1 { + --tw-rotate: -1deg; + } + + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .\32xl\:translate-x-0 { + --tw-translate-x: 0px; + } + + .\32xl\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .\32xl\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .\32xl\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .\32xl\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .\32xl\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .\32xl\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .\32xl\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .\32xl\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .\32xl\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .\32xl\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .\32xl\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .\32xl\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .\32xl\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .\32xl\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .\32xl\:translate-x-px { + --tw-translate-x: 1px; + } + + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .\32xl\:-translate-x-px { + --tw-translate-x: -1px; + } + + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .\32xl\:translate-x-full { + --tw-translate-x: 100%; + } + + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .\32xl\:-translate-x-full { + --tw-translate-x: -100%; + } + + .\32xl\:translate-y-0 { + --tw-translate-y: 0px; + } + + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .\32xl\:translate-y-px { + --tw-translate-y: 1px; + } + + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .\32xl\:-translate-y-px { + --tw-translate-y: -1px; + } + + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .\32xl\:translate-y-full { + --tw-translate-y: 100%; + } + + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .\32xl\:-translate-y-full { + --tw-translate-y: -100%; + } + + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .\32xl\:transition-none { + transition-property: none; + } + + .\32xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:ease-linear { + transition-timing-function: linear; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .\32xl\:duration-75 { + transition-duration: 75ms; + } + + .\32xl\:duration-100 { + transition-duration: 100ms; + } + + .\32xl\:duration-150 { + transition-duration: 150ms; + } + + .\32xl\:duration-200 { + transition-duration: 200ms; + } + + .\32xl\:duration-300 { + transition-duration: 300ms; + } + + .\32xl\:duration-500 { + transition-duration: 500ms; + } + + .\32xl\:duration-700 { + transition-duration: 700ms; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms; + } + + .\32xl\:delay-75 { + transition-delay: 75ms;/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ + +/* +Document +======== +*/ + +/** +Use a better box model (opinionated). +*/ + +*, +*::before, +*::after { + box-sizing: border-box; +} + +/** +Use a more readable tab size (opinionated). +*/ + +:root { + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; +} + +/** +1. Correct the line height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +*/ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* +Sections +======== +*/ + +/** +Remove the margin in all browsers. +*/ + +body { + margin: 0; +} + +/** +Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +*/ + +body { + font-family: + system-ui, + -apple-system, /* Firefox supports this but not yet `system-ui` */ + 'Segoe UI', + Roboto, + Helvetica, + Arial, + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji'; +} + +/* +Grouping content +================ +*/ + +/** +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ +} + +/* +Text-level semantics +==================== +*/ + +/** +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/** +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/** +1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) +2. Correct the odd 'em' font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: + ui-monospace, + SFMono-Regular, + Consolas, + 'Liberation Mono', + Menlo, + monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/** +Prevent 'sub' and 'sup' elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +Tabular data +============ +*/ + +/** +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ +} + +/* +Forms +===== +*/ + +/** +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** +Remove the inheritance of text transform in Edge and Firefox. +1. Remove the inheritance of text transform in Firefox. +*/ + +button, +select { /* 1 */ + text-transform: none; +} + +/** +Correct the inability to style clickable types in iOS and Safari. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; +} + +/** +Remove the inner border and padding in Firefox. +*/ + +::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** +Restore the focus styles unset by the previous rule. +*/ + +:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** +Remove the additional ':invalid' styles in Firefox. +See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/** +Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. +*/ + +legend { + padding: 0; +} + +/** +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/** +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/** +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to 'inherit' in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* +Interactive +=========== +*/ + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/** + * Manually forked from SUIT CSS Base: https://github.com/suitcss/base + * A thin layer on top of normalize.css that provides a starting point more + * suitable for web applications. + */ + +/** + * Removes the default spacing and border for appropriate elements. + */ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +button { + background-color: transparent; + background-image: none; +} + +/** + * Work around a Firefox/IE bug where the transparent `button` background + * results in a loss of the default `button` focus styles. + */ + +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; +} + +/** + * Tailwind custom reset styles + */ + +/** + * 1. Use the user's configured `sans` font-family (with Tailwind's default + * sans-serif font stack as a fallback) as a sane default. + * 2. Use Tailwind's default "normal" line-height so the user isn't forced + * to override it to ensure consistency even when using the default theme. + */ + +html { + font-family: "Inter", ui-sans-serif, 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"; /* 1 */ + line-height: 1.5; /* 2 */ +} + +/** + * Inherit font-family and line-height from `html` so users can set them as + * a class directly on the `html` element. + */ + +body { + font-family: inherit; + line-height: inherit; +} + +/** + * 1. Prevent padding and border from affecting element width. + * + * We used to set this in the html element and inherit from + * the parent element for everything else. This caused issues + * in shadow-dom-enhanced elements like
where the content + * is wrapped by a div with box-sizing set to `content-box`. + * + * https://github.com/mozdevs/cssremedy/issues/4 + * + * + * 2. Allow adding a border to an element by just adding a border-width. + * + * By default, the way the browser specifies that an element should have no + * border is by setting it's border-style to `none` in the user-agent + * stylesheet. + * + * In order to easily add borders to elements by just setting the `border-width` + * property, we change the default border-style for all elements to `solid`, and + * use border-width to hide them instead. This way our `border` utilities only + * need to set the `border-width` property instead of the entire `border` + * shorthand, making our border utilities much more straightforward to compose. + * + * https://github.com/tailwindcss/tailwindcss/pull/116 + */ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +/* + * Ensure horizontal rules are visible by default + */ + +hr { + border-top-width: 1px; +} + +/** + * Undo the `border-style: none` reset that Normalize applies to images so that + * our `border-{width}` utilities have the expected effect. + * + * The Normalize reset is unnecessary for us since we default the border-width + * to 0 on all elements. + * + * https://github.com/tailwindcss/tailwindcss/issues/362 + */ + +img { + border-style: solid; +} + +textarea { + resize: vertical; +} + +input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { + color: #9ca3af; +} + +input::-moz-placeholder, textarea::-moz-placeholder { + color: #9ca3af; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + color: #9ca3af; +} + +input::-ms-input-placeholder, textarea::-ms-input-placeholder { + color: #9ca3af; +} + +input::placeholder, +textarea::placeholder { + color: #9ca3af; +} + +button, +[role="button"] { + cursor: pointer; +} + +table { + border-collapse: collapse; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/** + * Reset links to optimize for opt-in styling instead of + * opt-out. + */ + +a { + color: inherit; + text-decoration: inherit; +} + +/** + * Reset form element properties that are easy to forget to + * style explicitly so you don't inadvertently introduce + * styles that deviate from your design system. These styles + * supplement a partial reset that is already applied by + * normalize.css. + */ + +button, +input, +optgroup, +select, +textarea { + padding: 0; + line-height: inherit; + color: inherit; +} + +/** + * Use the configured 'mono' font family for elements that + * are expected to be rendered with a monospace font, falling + * back to the system monospace stack if there is no configured + * 'mono' font family. + */ + +pre, +code, +kbd, +samp { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +/** + * Make replaced elements `display: block` by default as that's + * the behavior you want almost all of the time. Inspired by + * CSS Remedy, with `svg` added as well. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + vertical-align: middle; +} + +/** + * Constrain images and videos to the parent width and preserve + * their instrinsic aspect ratio. + * + * https://github.com/mozdevs/cssremedy/issues/14 + */ + +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; + } +} + +@media (min-width: 1536px) { + .container { + max-width: 1536px; + } +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); +} + +.space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} + +.space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + +.space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} + +.space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); +} + +.space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} + +.space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); +} + +.space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} + +.space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); +} + +.space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); +} + +.space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); +} + +.space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); +} + +.space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); +} + +.space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); +} + +.space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); +} + +.space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); +} + +.space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); +} + +.space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); +} + +.space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); +} + +.space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); +} + +.space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); +} + +.space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); +} + +.space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); +} + +.space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); +} + +.space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); +} + +.space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); +} + +.space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); +} + +.space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); +} + +.space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} + +.space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} + +.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} + +.space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); +} + +.space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); +} + +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; +} + +.space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; +} + +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); +} + +.divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); +} + +.divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); +} + +.divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); +} + +.divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + +.divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); +} + +.divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; +} + +.divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; +} + +.divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; +} + +.divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; +} + +.divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); +} + +.divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); +} + +.divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); +} + +.divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); +} + +.divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); +} + +.divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); +} + +.divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); +} + +.divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); +} + +.divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); +} + +.divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); +} + +.divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); +} + +.divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); +} + +.divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); +} + +.divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); +} + +.divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); +} + +.divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); +} + +.divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); +} + +.divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); +} + +.divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); +} + +.divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); +} + +.divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); +} + +.divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); +} + +.divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); +} + +.divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); +} + +.divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); +} + +.divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); +} + +.divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); +} + +.divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); +} + +.divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); +} + +.divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); +} + +.divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); +} + +.divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); +} + +.divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); +} + +.divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); +} + +.divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); +} + +.divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); +} + +.divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); +} + +.divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); +} + +.divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); +} + +.divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); +} + +.divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); +} + +.divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); +} + +.divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); +} + +.divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); +} + +.divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); +} + +.divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); +} + +.divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); +} + +.divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); +} + +.divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); +} + +.divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); +} + +.divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); +} + +.divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); +} + +.divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); +} + +.divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); +} + +.divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); +} + +.divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); +} + +.divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); +} + +.divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); +} + +.divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); +} + +.divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); +} + +.divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); +} + +.divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); +} + +.divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); +} + +.divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); +} + +.divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); +} + +.divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); +} + +.divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); +} + +.divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); +} + +.divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); +} + +.divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); +} + +.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); +} + +.divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); +} + +.divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); +} + +.divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); +} + +.divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); +} + +.divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); +} + +.divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); +} + +.divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); +} + +.divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; +} + +.divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; +} + +.divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; +} + +.divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; +} + +.divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; +} + +.divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; +} + +.divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; +} + +.divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; +} + +.divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; +} + +.divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; +} + +.divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; +} + +.divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; +} + +.divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; +} + +.divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; +} + +.divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; +} + +.divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; +} + +.divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; +} + +.divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; +} + +.divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; +} + +.divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; +} + +.bg-clip-padding { + background-clip: padding-box; +} + +.bg-clip-content { + background-clip: content-box; +} + +.bg-clip-text { + -webkit-background-clip: text; + background-clip: text; +} + +.bg-current { + background-color: currentColor; +} + +.bg-transparent { + background-color: transparent; +} + +.bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-current { + background-color: currentColor; +} + +.group:hover .group-hover\:bg-transparent { + background-color: transparent; +} + +.group:hover .group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.group:hover .group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-current:focus-within { + background-color: currentColor; +} + +.focus-within\:bg-transparent:focus-within { + background-color: transparent; +} + +.focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-current:hover { + background-color: currentColor; +} + +.hover\:bg-transparent:hover { + background-color: transparent; +} + +.hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-current:focus { + background-color: currentColor; +} + +.focus\:bg-transparent:focus { + background-color: transparent; +} + +.focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); +} + +.focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); +} + +.focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); +} + +.focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); +} + +.focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); +} + +.focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); +} + +.focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); +} + +.focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); +} + +.focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); +} + +.focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); +} + +.focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); +} + +.focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); +} + +.focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); +} + +.focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); +} + +.focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); +} + +.focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); +} + +.focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); +} + +.focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); +} + +.focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); +} + +.focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); +} + +.focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); +} + +.focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); +} + +.focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); +} + +.focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); +} + +.focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); +} + +.focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); +} + +.focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); +} + +.focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); +} + +.focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); +} + +.focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); +} + +.bg-none { + background-image: none; +} + +.bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); +} + +.bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); +} + +.bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); +} + +.bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); +} + +.bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); +} + +.from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.to-current { + --tw-gradient-to: currentColor; +} + +.to-transparent { + --tw-gradient-to: transparent; +} + +.to-black { + --tw-gradient-to: #000; +} + +.to-white { + --tw-gradient-to: #fff; +} + +.to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; +} + +.to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; +} + +.to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; +} + +.to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; +} + +.to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; +} + +.to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; +} + +.to-darkCoolGray-600 { + --tw-gradient-to: #344052; +} + +.to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; +} + +.to-darkCoolGray-800 { + --tw-gradient-to: #232B37; +} + +.to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; +} + +.to-coolGray-50 { + --tw-gradient-to: #F7F8F9; +} + +.to-coolGray-100 { + --tw-gradient-to: #EEF0F3; +} + +.to-coolGray-200 { + --tw-gradient-to: #D5DAE1; +} + +.to-coolGray-300 { + --tw-gradient-to: #BBC3CF; +} + +.to-coolGray-400 { + --tw-gradient-to: #8896AB; +} + +.to-coolGray-500 { + --tw-gradient-to: #556987; +} + +.to-coolGray-600 { + --tw-gradient-to: #4D5F7A; +} + +.to-coolGray-700 { + --tw-gradient-to: #404F65; +} + +.to-coolGray-800 { + --tw-gradient-to: #333F51; +} + +.to-coolGray-900 { + --tw-gradient-to: #2A3342; +} + +.to-indigo-50 { + --tw-gradient-to: #F8F6FF; +} + +.to-indigo-100 { + --tw-gradient-to: #F0EEFF; +} + +.to-indigo-200 { + --tw-gradient-to: #DAD4FF; +} + +.to-indigo-300 { + --tw-gradient-to: #C3B9FF; +} + +.to-indigo-400 { + --tw-gradient-to: #9685FF; +} + +.to-indigo-500 { + --tw-gradient-to: #6951FF; +} + +.to-indigo-600 { + --tw-gradient-to: #5F49E6; +} + +.to-indigo-700 { + --tw-gradient-to: #4F3DBF; +} + +.to-indigo-800 { + --tw-gradient-to: #3F3199; +} + +.to-indigo-900 { + --tw-gradient-to: #33287D; +} + +.to-violet-50 { + --tw-gradient-to: #FBF7FF; +} + +.to-violet-100 { + --tw-gradient-to: #F6EEFE; +} + +.to-violet-200 { + --tw-gradient-to: #E9D5FD; +} + +.to-violet-300 { + --tw-gradient-to: #DCBBFC; +} + +.to-violet-400 { + --tw-gradient-to: #C288F9; +} + +.to-violet-500 { + --tw-gradient-to: #A855F7; +} + +.to-violet-600 { + --tw-gradient-to: #974DDE; +} + +.to-violet-700 { + --tw-gradient-to: #7E40B9; +} + +.to-violet-800 { + --tw-gradient-to: #653394; +} + +.to-violet-900 { + --tw-gradient-to: #522A79; +} + +.to-yellow-50 { + --tw-gradient-to: #FFFAF3; +} + +.to-yellow-100 { + --tw-gradient-to: #FEF5E7; +} + +.to-yellow-200 { + --tw-gradient-to: #FDE7C2; +} + +.to-yellow-300 { + --tw-gradient-to: #FBD89D; +} + +.to-yellow-400 { + --tw-gradient-to: #F8BB54; +} + +.to-yellow-500 { + --tw-gradient-to: #F59E0B; +} + +.to-yellow-600 { + --tw-gradient-to: #DD8E0A; +} + +.to-yellow-700 { + --tw-gradient-to: #B87708; +} + +.to-yellow-800 { + --tw-gradient-to: #935F07; +} + +.to-yellow-900 { + --tw-gradient-to: #784D05; +} + +.to-red-50 { + --tw-gradient-to: #FEF7F6; +} + +.to-red-100 { + --tw-gradient-to: #FDEEEC; +} + +.to-red-200 { + --tw-gradient-to: #FBD6D0; +} + +.to-red-300 { + --tw-gradient-to: #F9BDB4; +} + +.to-red-400 { + --tw-gradient-to: #F48B7C; +} + +.to-red-500 { + --tw-gradient-to: #EF5844; +} + +.to-red-600 { + --tw-gradient-to: #D7503D; +} + +.to-red-700 { + --tw-gradient-to: #B34333; +} + +.to-red-800 { + --tw-gradient-to: #8F3529; +} + +.to-red-900 { + --tw-gradient-to: #752C21; +} + +.to-green-50 { + --tw-gradient-to: #F4FDF7; +} + +.to-green-100 { + --tw-gradient-to: #EAFAF0; +} + +.to-green-200 { + --tw-gradient-to: #CAF4D9; +} + +.to-green-300 { + --tw-gradient-to: #AAEDC3; +} + +.to-green-400 { + --tw-gradient-to: #6ADF95; +} + +.to-green-500 { + --tw-gradient-to: #2AD167; +} + +.to-green-600 { + --tw-gradient-to: #26BC5E; +} + +.to-green-700 { + --tw-gradient-to: #209D4E; +} + +.to-green-800 { + --tw-gradient-to: #197D3E; +} + +.to-green-900 { + --tw-gradient-to: #156633; +} + +.to-blue-50 { + --tw-gradient-to: #F5F9FF; +} + +.to-blue-100 { + --tw-gradient-to: #EBF3FE; +} + +.to-blue-200 { + --tw-gradient-to: #CEE0FD; +} + +.to-blue-300 { + --tw-gradient-to: #B1CDFB; +} + +.to-blue-400 { + --tw-gradient-to: #76A8F9; +} + +.to-blue-500 { + --tw-gradient-to: #3B82F6; +} + +.to-blue-600 { + --tw-gradient-to: #3575DD; +} + +.to-blue-700 { + --tw-gradient-to: #2C62B9; +} + +.to-blue-800 { + --tw-gradient-to: #234E94; +} + +.to-blue-900 { + --tw-gradient-to: #1D4079; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563; +} + +.to-gray-700 { + --tw-gradient-to: #374151; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937; +} + +.to-gray-900 { + --tw-gradient-to: #111827; +} + +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff; +} + +.hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; +} + +.hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; +} + +.hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; +} + +.hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; +} + +.hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; +} + +.hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; +} + +.hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; +} + +.hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; +} + +.hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; +} + +.hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; +} + +.hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; +} + +.hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; +} + +.hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; +} + +.hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; +} + +.hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; +} + +.hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; +} + +.hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; +} + +.hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; +} + +.hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; +} + +.hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; +} + +.hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; +} + +.hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; +} + +.hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; +} + +.hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; +} + +.hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; +} + +.hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; +} + +.hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; +} + +.hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; +} + +.hover\:to-violet-800:hover { + --tw-gradient-to: #653394; +} + +.hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #B34333; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #752C21; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #156633; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; +} + +.focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); +} + +.focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); +} + +.focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); +} + +.focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); +} + +.focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); +} + +.focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); +} + +.focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); +} + +.focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); +} + +.focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); +} + +.focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); +} + +.focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); +} + +.focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); +} + +.focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); +} + +.focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); +} + +.focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); +} + +.focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); +} + +.focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); +} + +.focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); +} + +.focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); +} + +.focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); +} + +.focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); +} + +.focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); +} + +.focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); +} + +.focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); +} + +.focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); +} + +.focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); +} + +.focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); +} + +.focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); +} + +.focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); +} + +.focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); +} + +.focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); +} + +.focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); +} + +.focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); +} + +.focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); +} + +.focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); +} + +.focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); +} + +.focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); +} + +.focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); +} + +.focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); +} + +.focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); +} + +.focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); +} + +.focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); +} + +.focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); +} + +.focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); +} + +.focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); +} + +.focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); +} + +.focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); +} + +.focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); +} + +.focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); +} + +.focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); +} + +.focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); +} + +.focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); +} + +.focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); +} + +.focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); +} + +.focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); +} + +.focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); +} + +.focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); +} + +.focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); +} + +.focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); +} + +.focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); +} + +.focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); +} + +.focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); +} + +.focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); +} + +.focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); +} + +.focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); +} + +.focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); +} + +.focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); +} + +.focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); +} + +.focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); +} + +.focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); +} + +.focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); +} + +.focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); +} + +.focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); +} + +.focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); +} + +.focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); +} + +.focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); +} + +.focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); +} + +.focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); +} + +.focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); +} + +.focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); +} + +.focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); +} + +.focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); +} + +.focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); +} + +.focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); +} + +.focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); +} + +.focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); +} + +.focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); +} + +.focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); +} + +.focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); +} + +.focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); +} + +.focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); +} + +.focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); +} + +.focus\:to-current:focus { + --tw-gradient-to: currentColor; +} + +.focus\:to-transparent:focus { + --tw-gradient-to: transparent; +} + +.focus\:to-black:focus { + --tw-gradient-to: #000; +} + +.focus\:to-white:focus { + --tw-gradient-to: #fff; +} + +.focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; +} + +.focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; +} + +.focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; +} + +.focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; +} + +.focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; +} + +.focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; +} + +.focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; +} + +.focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; +} + +.focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; +} + +.focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; +} + +.focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; +} + +.focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; +} + +.focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; +} + +.focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; +} + +.focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; +} + +.focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; +} + +.focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; +} + +.focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; +} + +.focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; +} + +.focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; +} + +.focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; +} + +.focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; +} + +.focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; +} + +.focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; +} + +.focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; +} + +.focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; +} + +.focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; +} + +.focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; +} + +.focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; +} + +.focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; +} + +.focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; +} + +.focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; +} + +.focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; +} + +.focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; +} + +.focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; +} + +.focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; +} + +.focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; +} + +.focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; +} + +.focus\:to-violet-800:focus { + --tw-gradient-to: #653394; +} + +.focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; +} + +.focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; +} + +.focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; +} + +.focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; +} + +.focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; +} + +.focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; +} + +.focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; +} + +.focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; +} + +.focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; +} + +.focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; +} + +.focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; +} + +.focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; +} + +.focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; +} + +.focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; +} + +.focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; +} + +.focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; +} + +.focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; +} + +.focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; +} + +.focus\:to-red-700:focus { + --tw-gradient-to: #B34333; +} + +.focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; +} + +.focus\:to-red-900:focus { + --tw-gradient-to: #752C21; +} + +.focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; +} + +.focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; +} + +.focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; +} + +.focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; +} + +.focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; +} + +.focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; +} + +.focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; +} + +.focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; +} + +.focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; +} + +.focus\:to-green-900:focus { + --tw-gradient-to: #156633; +} + +.focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; +} + +.focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; +} + +.focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; +} + +.focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; +} + +.focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; +} + +.focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; +} + +.focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; +} + +.focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; +} + +.focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; +} + +.focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; +} + +.focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; +} + +.focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; +} + +.focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; +} + +.focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; +} + +.focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; +} + +.focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; +} + +.focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; +} + +.focus\:to-gray-700:focus { + --tw-gradient-to: #374151; +} + +.focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; +} + +.focus\:to-gray-900:focus { + --tw-gradient-to: #111827; +} + +.bg-opacity-0 { + --tw-bg-opacity: 0; +} + +.bg-opacity-5 { + --tw-bg-opacity: 0.05; +} + +.bg-opacity-10 { + --tw-bg-opacity: 0.1; +} + +.bg-opacity-20 { + --tw-bg-opacity: 0.2; +} + +.bg-opacity-25 { + --tw-bg-opacity: 0.25; +} + +.bg-opacity-30 { + --tw-bg-opacity: 0.3; +} + +.bg-opacity-40 { + --tw-bg-opacity: 0.4; +} + +.bg-opacity-50 { + --tw-bg-opacity: 0.5; +} + +.bg-opacity-60 { + --tw-bg-opacity: 0.6; +} + +.bg-opacity-70 { + --tw-bg-opacity: 0.7; +} + +.bg-opacity-75 { + --tw-bg-opacity: 0.75; +} + +.bg-opacity-80 { + --tw-bg-opacity: 0.8; +} + +.bg-opacity-90 { + --tw-bg-opacity: 0.9; +} + +.bg-opacity-95 { + --tw-bg-opacity: 0.95; +} + +.bg-opacity-100 { + --tw-bg-opacity: 1; +} + +.group:hover .group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; +} + +.group:hover .group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; +} + +.group:hover .group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; +} + +.group:hover .group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; +} + +.group:hover .group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; +} + +.group:hover .group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; +} + +.group:hover .group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; +} + +.group:hover .group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; +} + +.group:hover .group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; +} + +.group:hover .group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; +} + +.group:hover .group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; +} + +.group:hover .group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; +} + +.group:hover .group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; +} + +.group:hover .group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; +} + +.group:hover .group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; +} + +.focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; +} + +.focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; +} + +.focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; +} + +.focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; +} + +.focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; +} + +.focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; +} + +.focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; +} + +.focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; +} + +.focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; +} + +.focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; +} + +.focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; +} + +.focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; +} + +.focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; +} + +.focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; +} + +.focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; +} + +.hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; +} + +.hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; +} + +.hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; +} + +.hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; +} + +.hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; +} + +.hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; +} + +.hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; +} + +.hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; +} + +.hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; +} + +.hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; +} + +.hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; +} + +.hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; +} + +.hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; +} + +.hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; +} + +.hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; +} + +.focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; +} + +.focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; +} + +.focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; +} + +.focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; +} + +.focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; +} + +.focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; +} + +.focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; +} + +.focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; +} + +.focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; +} + +.focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; +} + +.focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; +} + +.focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; +} + +.focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; +} + +.focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; +} + +.focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; +} + +.border-transparent { + border-color: transparent; +} + +.border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-current { + border-color: currentColor; +} + +.group:hover .group-hover\:border-transparent { + border-color: transparent; +} + +.group:hover .group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.group:hover .group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.focus-within\:border-current:focus-within { + border-color: currentColor; +} + +.focus-within\:border-transparent:focus-within { + border-color: transparent; +} + +.focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.hover\:border-current:hover { + border-color: currentColor; +} + +.hover\:border-transparent:hover { + border-color: transparent; +} + +.hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.focus\:border-current:focus { + border-color: currentColor; +} + +.focus\:border-transparent:focus { + border-color: transparent; +} + +.focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); +} + +.focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); +} + +.focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); +} + +.focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); +} + +.focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); +} + +.focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); +} + +.focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); +} + +.focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); +} + +.focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); +} + +.focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); +} + +.focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); +} + +.focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); +} + +.focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); +} + +.focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); +} + +.focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); +} + +.focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); +} + +.focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); +} + +.focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); +} + +.focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); +} + +.focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); +} + +.focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); +} + +.focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); +} + +.focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); +} + +.focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); +} + +.focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); +} + +.focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); +} + +.focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); +} + +.focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); +} + +.focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); +} + +.focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); +} + +.focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); +} + +.focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); +} + +.focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); +} + +.focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); +} + +.focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); +} + +.focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); +} + +.focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); +} + +.focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); +} + +.focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); +} + +.focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); +} + +.focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); +} + +.focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); +} + +.focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); +} + +.focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); +} + +.focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); +} + +.focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); +} + +.focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); +} + +.focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); +} + +.focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); +} + +.focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); +} + +.focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); +} + +.focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); +} + +.focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); +} + +.focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); +} + +.focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); +} + +.focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); +} + +.focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); +} + +.focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); +} + +.focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); +} + +.focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); +} + +.focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); +} + +.focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); +} + +.focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); +} + +.focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); +} + +.focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + +.focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); +} + +.focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); +} + +.focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); +} + +.focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); +} + +.border-opacity-0 { + --tw-border-opacity: 0; +} + +.border-opacity-5 { + --tw-border-opacity: 0.05; +} + +.border-opacity-10 { + --tw-border-opacity: 0.1; +} + +.border-opacity-20 { + --tw-border-opacity: 0.2; +} + +.border-opacity-25 { + --tw-border-opacity: 0.25; +} + +.border-opacity-30 { + --tw-border-opacity: 0.3; +} + +.border-opacity-40 { + --tw-border-opacity: 0.4; +} + +.border-opacity-50 { + --tw-border-opacity: 0.5; +} + +.border-opacity-60 { + --tw-border-opacity: 0.6; +} + +.border-opacity-70 { + --tw-border-opacity: 0.7; +} + +.border-opacity-75 { + --tw-border-opacity: 0.75; +} + +.border-opacity-80 { + --tw-border-opacity: 0.8; +} + +.border-opacity-90 { + --tw-border-opacity: 0.9; +} + +.border-opacity-95 { + --tw-border-opacity: 0.95; +} + +.border-opacity-100 { + --tw-border-opacity: 1; +} + +.group:hover .group-hover\:border-opacity-0 { + --tw-border-opacity: 0; +} + +.group:hover .group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; +} + +.group:hover .group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; +} + +.group:hover .group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; +} + +.group:hover .group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; +} + +.group:hover .group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; +} + +.group:hover .group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; +} + +.group:hover .group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; +} + +.group:hover .group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; +} + +.group:hover .group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; +} + +.group:hover .group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; +} + +.group:hover .group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; +} + +.group:hover .group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; +} + +.group:hover .group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; +} + +.group:hover .group-hover\:border-opacity-100 { + --tw-border-opacity: 1; +} + +.focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; +} + +.focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; +} + +.focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; +} + +.focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; +} + +.focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; +} + +.focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; +} + +.focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; +} + +.focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; +} + +.focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; +} + +.focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; +} + +.focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; +} + +.focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; +} + +.focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; +} + +.focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; +} + +.focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; +} + +.hover\:border-opacity-0:hover { + --tw-border-opacity: 0; +} + +.hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; +} + +.hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; +} + +.hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; +} + +.hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; +} + +.hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; +} + +.hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; +} + +.hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; +} + +.hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; +} + +.hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; +} + +.hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; +} + +.hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; +} + +.hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; +} + +.hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; +} + +.hover\:border-opacity-100:hover { + --tw-border-opacity: 1; +} + +.focus\:border-opacity-0:focus { + --tw-border-opacity: 0; +} + +.focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; +} + +.focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; +} + +.focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; +} + +.focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; +} + +.focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; +} + +.focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; +} + +.focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; +} + +.focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; +} + +.focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; +} + +.focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; +} + +.focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; +} + +.focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; +} + +.focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; +} + +.focus\:border-opacity-100:focus { + --tw-border-opacity: 1; +} + +.rounded-none { + border-radius: 0; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded { + border-radius: 0.25rem; +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded-lg { + border-radius: 0.5rem; +} + +.rounded-xl { + border-radius: 0.675rem; +} + +.rounded-2xl { + border-radius: 0.75rem; +} + +.rounded-3xl { + border-radius: 0.875rem; +} + +.rounded-4xl { + border-radius: 1rem; +} + +.rounded-5xl { + border-radius: 1.25rem; +} + +.rounded-6xl { + border-radius: 1.375rem; +} + +.rounded-7xl { + border-radius: 1.5rem; +} + +.rounded-8xl { + border-radius: 2rem; +} + +.rounded-9xl { + border-radius: 2.25rem; +} + +.rounded-10xl { + border-radius: 2.5rem; +} + +.rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; +} + +.rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; +} + +.rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; +} + +.rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; +} + +.rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} + +.rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} + +.rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} + +.rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; +} + +.rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; +} + +.rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; +} + +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + +.rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; +} + +.rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; +} + +.rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; +} + +.rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; +} + +.rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; +} + +.rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; +} + +.rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; +} + +.rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; +} + +.rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; +} + +.rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; +} + +.rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; +} + +.rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; +} + +.rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; +} + +.rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; +} + +.rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; +} + +.rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; +} + +.rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; +} + +.rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; +} + +.rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; +} + +.rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; +} + +.rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; +} + +.rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; +} + +.rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; +} + +.rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; +} + +.rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; +} + +.rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; +} + +.rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; +} + +.rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; +} + +.rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; +} + +.rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; +} + +.rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; +} + +.rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; +} + +.rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; +} + +.rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; +} + +.rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; +} + +.rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; +} + +.rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; +} + +.rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; +} + +.rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; +} + +.rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; +} + +.rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; +} + +.rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; +} + +.rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; +} + +.rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; +} + +.rounded-l-11xl { + 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: 0.125rem; +} + +.rounded-tr-sm { + border-top-right-radius: 0.125rem; +} + +.rounded-br-sm { + border-bottom-right-radius: 0.125rem; +} + +.rounded-bl-sm { + border-bottom-left-radius: 0.125rem; +} + +.rounded-tl { + border-top-left-radius: 0.25rem; +} + +.rounded-tr { + border-top-right-radius: 0.25rem; +} + +.rounded-br { + border-bottom-right-radius: 0.25rem; +} + +.rounded-bl { + border-bottom-left-radius: 0.25rem; +} + +.rounded-tl-md { + border-top-left-radius: 0.375rem; +} + +.rounded-tr-md { + border-top-right-radius: 0.375rem; +} + +.rounded-br-md { + border-bottom-right-radius: 0.375rem; +} + +.rounded-bl-md { + border-bottom-left-radius: 0.375rem; +} + +.rounded-tl-lg { + border-top-left-radius: 0.5rem; +} + +.rounded-tr-lg { + border-top-right-radius: 0.5rem; +} + +.rounded-br-lg { + border-bottom-right-radius: 0.5rem; +} + +.rounded-bl-lg { + border-bottom-left-radius: 0.5rem; +} + +.rounded-tl-xl { + border-top-left-radius: 0.675rem; +} + +.rounded-tr-xl { + border-top-right-radius: 0.675rem; +} + +.rounded-br-xl { + border-bottom-right-radius: 0.675rem; +} + +.rounded-bl-xl { + border-bottom-left-radius: 0.675rem; +} + +.rounded-tl-2xl { + border-top-left-radius: 0.75rem; +} + +.rounded-tr-2xl { + border-top-right-radius: 0.75rem; +} + +.rounded-br-2xl { + border-bottom-right-radius: 0.75rem; +} + +.rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; +} + +.rounded-tl-3xl { + border-top-left-radius: 0.875rem; +} + +.rounded-tr-3xl { + border-top-right-radius: 0.875rem; +} + +.rounded-br-3xl { + border-bottom-right-radius: 0.875rem; +} + +.rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; +} + +.rounded-tl-4xl { + border-top-left-radius: 1rem; +} + +.rounded-tr-4xl { + border-top-right-radius: 1rem; +} + +.rounded-br-4xl { + border-bottom-right-radius: 1rem; +} + +.rounded-bl-4xl { + border-bottom-left-radius: 1rem; +} + +.rounded-tl-5xl { + border-top-left-radius: 1.25rem; +} + +.rounded-tr-5xl { + border-top-right-radius: 1.25rem; +} + +.rounded-br-5xl { + border-bottom-right-radius: 1.25rem; +} + +.rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; +} + +.rounded-tl-6xl { + border-top-left-radius: 1.375rem; +} + +.rounded-tr-6xl { + border-top-right-radius: 1.375rem; +} + +.rounded-br-6xl { + border-bottom-right-radius: 1.375rem; +} + +.rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; +} + +.rounded-tl-7xl { + border-top-left-radius: 1.5rem; +} + +.rounded-tr-7xl { + border-top-right-radius: 1.5rem; +} + +.rounded-br-7xl { + border-bottom-right-radius: 1.5rem; +} + +.rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; +} + +.rounded-tl-8xl { + border-top-left-radius: 2rem; +} + +.rounded-tr-8xl { + border-top-right-radius: 2rem; +} + +.rounded-br-8xl { + border-bottom-right-radius: 2rem; +} + +.rounded-bl-8xl { + border-bottom-left-radius: 2rem; +} + +.rounded-tl-9xl { + border-top-left-radius: 2.25rem; +} + +.rounded-tr-9xl { + border-top-right-radius: 2.25rem; +} + +.rounded-br-9xl { + border-bottom-right-radius: 2.25rem; +} + +.rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; +} + +.rounded-tl-10xl { + border-top-left-radius: 2.5rem; +} + +.rounded-tr-10xl { + border-top-right-radius: 2.5rem; +} + +.rounded-br-10xl { + border-bottom-right-radius: 2.5rem; +} + +.rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; +} + +.rounded-tl-11xl { + border-top-left-radius: 5rem; +} + +.rounded-tr-11xl { + border-top-right-radius: 5rem; +} + +.rounded-br-11xl { + border-bottom-right-radius: 5rem; +} + +.rounded-bl-11xl { + 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 { + 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; +} + +.contents { + display: contents; +} + +.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-nowrap { + flex-wrap: nowrap; +} + +.place-items-auto { + place-items: auto; +} + +.place-items-start { + place-items: start; +} + +.place-items-end { + place-items: end; +} + +.place-items-center { + place-items: center; +} + +.place-items-stretch { + place-items: stretch; +} + +.place-content-center { + place-content: center; +} + +.place-content-start { + place-content: start; +} + +.place-content-end { + place-content: end; +} + +.place-content-between { + place-content: space-between; +} + +.place-content-around { + place-content: space-around; +} + +.place-content-evenly { + place-content: space-evenly; +} + +.place-content-stretch { + place-content: stretch; +} + +.place-self-auto { + place-self: auto; +} + +.place-self-start { + place-self: start; +} + +.place-self-end { + place-self: end; +} + +.place-self-center { + place-self: center; +} + +.place-self-stretch { + place-self: stretch; +} + +.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; +} + +.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; +} + +.content-evenly { + align-content: space-evenly; +} + +.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-items-auto { + justify-items: auto; +} + +.justify-items-start { + justify-items: start; +} + +.justify-items-end { + justify-items: end; +} + +.justify-items-center { + justify-items: center; +} + +.justify-items-stretch { + justify-items: 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; +} + +.justify-self-auto { + justify-self: auto; +} + +.justify-self-start { + justify-self: start; +} + +.justify-self-end { + justify-self: end; +} + +.justify-self-center { + justify-self: center; +} + +.justify-self-stretch { + justify-self: stretch; +} + +.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; +} + +.clear-left { + clear: left; +} + +.clear-right { + clear: right; +} + +.clear-both { + clear: both; +} + +.clear-none { + clear: none; +} + +.font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: ui-monospace, SFMono-Regular, 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; +} + +.h-0 { + height: 0px; +} + +.h-1 { + height: 0.25rem; +} + +.h-2 { + height: 0.5rem; +} + +.h-3 { + height: 0.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-14 { + height: 3.5rem; +} + +.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: 0.125rem; +} + +.h-1\.5 { + height: 0.375rem; +} + +.h-2\.5 { + height: 0.625rem; +} + +.h-3\.5 { + height: 0.875rem; +} + +.h-full { + height: 100%; +} + +.h-screen { + height: 100vh; +} + +.text-xxs { + font-size: 0.6875rem; +} + +.text-xs { + font-size: 0.75rem; +} + +.text-sm { + font-size: 0.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: 3.75rem; +} + +.text-7xl { + font-size: 4.5rem; +} + +.text-8xl { + font-size: 6rem; +} + +.text-9xl { + font-size: 8rem; +} + +.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: 0px; +} + +.m-1 { + margin: 0.25rem; +} + +.m-2 { + margin: 0.5rem; +} + +.m-3 { + margin: 0.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-14 { + margin: 3.5rem; +} + +.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: 0.125rem; +} + +.m-1\.5 { + margin: 0.375rem; +} + +.m-2\.5 { + margin: 0.625rem; +} + +.m-3\.5 { + margin: 0.875rem; +} + +.-m-0 { + margin: 0px; +} + +.-m-1 { + margin: -0.25rem; +} + +.-m-2 { + margin: -0.5rem; +} + +.-m-3 { + margin: -0.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-14 { + margin: -3.5rem; +} + +.-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: -0.125rem; +} + +.-m-1\.5 { + margin: -0.375rem; +} + +.-m-2\.5 { + margin: -0.625rem; +} + +.-m-3\.5 { + margin: -0.875rem; +} + +.my-0 { + margin-top: 0px; + margin-bottom: 0px; +} + +.mx-0 { + margin-left: 0px; + margin-right: 0px; +} + +.my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; +} + +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +.my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; +} + +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; +} + +.my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; +} + +.mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; +} + +.mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; +} + +.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: 0.125rem; + margin-bottom: 0.125rem; +} + +.mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; +} + +.my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; +} + +.mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; +} + +.my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; +} + +.mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; +} + +.my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; +} + +.mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; +} + +.-my-0 { + margin-top: 0px; + margin-bottom: 0px; +} + +.-mx-0 { + margin-left: 0px; + margin-right: 0px; +} + +.-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; +} + +.-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; +} + +.-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; +} + +.-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; +} + +.-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; +} + +.-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; +} + +.-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; +} + +.-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: -0.125rem; + margin-bottom: -0.125rem; +} + +.-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; +} + +.-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; +} + +.-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; +} + +.-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; +} + +.-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; +} + +.-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; +} + +.-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; +} + +.mt-0 { + margin-top: 0px; +} + +.mr-0 { + margin-right: 0px; +} + +.mb-0 { + margin-bottom: 0px; +} + +.ml-0 { + margin-left: 0px; +} + +.mt-1 { + margin-top: 0.25rem; +} + +.mr-1 { + margin-right: 0.25rem; +} + +.mb-1 { + margin-bottom: 0.25rem; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.mt-2 { + margin-top: 0.5rem; +} + +.mr-2 { + margin-right: 0.5rem; +} + +.mb-2 { + margin-bottom: 0.5rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.mt-3 { + margin-top: 0.75rem; +} + +.mr-3 { + margin-right: 0.75rem; +} + +.mb-3 { + margin-bottom: 0.75rem; +} + +.ml-3 { + margin-left: 0.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-14 { + margin-top: 3.5rem; +} + +.mr-14 { + margin-right: 3.5rem; +} + +.mb-14 { + margin-bottom: 3.5rem; +} + +.ml-14 { + margin-left: 3.5rem; +} + +.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: 0.125rem; +} + +.mr-0\.5 { + margin-right: 0.125rem; +} + +.mb-0\.5 { + margin-bottom: 0.125rem; +} + +.ml-0\.5 { + margin-left: 0.125rem; +} + +.mt-1\.5 { + margin-top: 0.375rem; +} + +.mr-1\.5 { + margin-right: 0.375rem; +} + +.mb-1\.5 { + margin-bottom: 0.375rem; +} + +.ml-1\.5 { + margin-left: 0.375rem; +} + +.mt-2\.5 { + margin-top: 0.625rem; +} + +.mr-2\.5 { + margin-right: 0.625rem; +} + +.mb-2\.5 { + margin-bottom: 0.625rem; +} + +.ml-2\.5 { + margin-left: 0.625rem; +} + +.mt-3\.5 { + margin-top: 0.875rem; +} + +.mr-3\.5 { + margin-right: 0.875rem; +} + +.mb-3\.5 { + margin-bottom: 0.875rem; +} + +.ml-3\.5 { + margin-left: 0.875rem; +} + +.-mt-0 { + margin-top: 0px; +} + +.-mr-0 { + margin-right: 0px; +} + +.-mb-0 { + margin-bottom: 0px; +} + +.-ml-0 { + margin-left: 0px; +} + +.-mt-1 { + margin-top: -0.25rem; +} + +.-mr-1 { + margin-right: -0.25rem; +} + +.-mb-1 { + margin-bottom: -0.25rem; +} + +.-ml-1 { + margin-left: -0.25rem; +} + +.-mt-2 { + margin-top: -0.5rem; +} + +.-mr-2 { + margin-right: -0.5rem; +} + +.-mb-2 { + margin-bottom: -0.5rem; +} + +.-ml-2 { + margin-left: -0.5rem; +} + +.-mt-3 { + margin-top: -0.75rem; +} + +.-mr-3 { + margin-right: -0.75rem; +} + +.-mb-3 { + margin-bottom: -0.75rem; +} + +.-ml-3 { + margin-left: -0.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-14 { + margin-top: -3.5rem; +} + +.-mr-14 { + margin-right: -3.5rem; +} + +.-mb-14 { + margin-bottom: -3.5rem; +} + +.-ml-14 { + margin-left: -3.5rem; +} + +.-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: -0.125rem; +} + +.-mr-0\.5 { + margin-right: -0.125rem; +} + +.-mb-0\.5 { + margin-bottom: -0.125rem; +} + +.-ml-0\.5 { + margin-left: -0.125rem; +} + +.-mt-1\.5 { + margin-top: -0.375rem; +} + +.-mr-1\.5 { + margin-right: -0.375rem; +} + +.-mb-1\.5 { + margin-bottom: -0.375rem; +} + +.-ml-1\.5 { + margin-left: -0.375rem; +} + +.-mt-2\.5 { + margin-top: -0.625rem; +} + +.-mr-2\.5 { + margin-right: -0.625rem; +} + +.-mb-2\.5 { + margin-bottom: -0.625rem; +} + +.-ml-2\.5 { + margin-left: -0.625rem; +} + +.-mt-3\.5 { + margin-top: -0.875rem; +} + +.-mr-3\.5 { + margin-right: -0.875rem; +} + +.-mb-3\.5 { + margin-bottom: -0.875rem; +} + +.-ml-3\.5 { + margin-left: -0.875rem; +} + +.max-h-full { + max-height: 100%; +} + +.max-h-screen { + max-height: 100vh; +} + +.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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; +} + +.max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; +} + +.max-w-prose { + max-width: 65ch; +} + +.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%; +} + +.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-5 { + opacity: 0.05; +} + +.opacity-10 { + opacity: 0.1; +} + +.opacity-20 { + opacity: 0.2; +} + +.opacity-25 { + opacity: 0.25; +} + +.opacity-30 { + opacity: 0.3; +} + +.opacity-40 { + opacity: 0.4; +} + +.opacity-50 { + opacity: 0.5; +} + +.opacity-60 { + opacity: 0.6; +} + +.opacity-70 { + opacity: 0.7; +} + +.opacity-75 { + opacity: 0.75; +} + +.opacity-80 { + opacity: 0.8; +} + +.opacity-90 { + opacity: 0.9; +} + +.opacity-95 { + opacity: 0.95; +} + +.opacity-100 { + opacity: 1; +} + +.group:hover .group-hover\:opacity-0 { + opacity: 0; +} + +.group:hover .group-hover\:opacity-5 { + opacity: 0.05; +} + +.group:hover .group-hover\:opacity-10 { + opacity: 0.1; +} + +.group:hover .group-hover\:opacity-20 { + opacity: 0.2; +} + +.group:hover .group-hover\:opacity-25 { + opacity: 0.25; +} + +.group:hover .group-hover\:opacity-30 { + opacity: 0.3; +} + +.group:hover .group-hover\:opacity-40 { + opacity: 0.4; +} + +.group:hover .group-hover\:opacity-50 { + opacity: 0.5; +} + +.group:hover .group-hover\:opacity-60 { + opacity: 0.6; +} + +.group:hover .group-hover\:opacity-70 { + opacity: 0.7; +} + +.group:hover .group-hover\:opacity-75 { + opacity: 0.75; +} + +.group:hover .group-hover\:opacity-80 { + opacity: 0.8; +} + +.group:hover .group-hover\:opacity-90 { + opacity: 0.9; +} + +.group:hover .group-hover\:opacity-95 { + opacity: 0.95; +} + +.group:hover .group-hover\:opacity-100 { + opacity: 1; +} + +.focus-within\:opacity-0:focus-within { + opacity: 0; +} + +.focus-within\:opacity-5:focus-within { + opacity: 0.05; +} + +.focus-within\:opacity-10:focus-within { + opacity: 0.1; +} + +.focus-within\:opacity-20:focus-within { + opacity: 0.2; +} + +.focus-within\:opacity-25:focus-within { + opacity: 0.25; +} + +.focus-within\:opacity-30:focus-within { + opacity: 0.3; +} + +.focus-within\:opacity-40:focus-within { + opacity: 0.4; +} + +.focus-within\:opacity-50:focus-within { + opacity: 0.5; +} + +.focus-within\:opacity-60:focus-within { + opacity: 0.6; +} + +.focus-within\:opacity-70:focus-within { + opacity: 0.7; +} + +.focus-within\:opacity-75:focus-within { + opacity: 0.75; +} + +.focus-within\:opacity-80:focus-within { + opacity: 0.8; +} + +.focus-within\:opacity-90:focus-within { + opacity: 0.9; +} + +.focus-within\:opacity-95:focus-within { + opacity: 0.95; +} + +.focus-within\:opacity-100:focus-within { + opacity: 1; +} + +.hover\:opacity-0:hover { + opacity: 0; +} + +.hover\:opacity-5:hover { + opacity: 0.05; +} + +.hover\:opacity-10:hover { + opacity: 0.1; +} + +.hover\:opacity-20:hover { + opacity: 0.2; +} + +.hover\:opacity-25:hover { + opacity: 0.25; +} + +.hover\:opacity-30:hover { + opacity: 0.3; +} + +.hover\:opacity-40:hover { + opacity: 0.4; +} + +.hover\:opacity-50:hover { + opacity: 0.5; +} + +.hover\:opacity-60:hover { + opacity: 0.6; +} + +.hover\:opacity-70:hover { + opacity: 0.7; +} + +.hover\:opacity-75:hover { + opacity: 0.75; +} + +.hover\:opacity-80:hover { + opacity: 0.8; +} + +.hover\:opacity-90:hover { + opacity: 0.9; +} + +.hover\:opacity-95:hover { + opacity: 0.95; +} + +.hover\:opacity-100:hover { + opacity: 1; +} + +.focus\:opacity-0:focus { + opacity: 0; +} + +.focus\:opacity-5:focus { + opacity: 0.05; +} + +.focus\:opacity-10:focus { + opacity: 0.1; +} + +.focus\:opacity-20:focus { + opacity: 0.2; +} + +.focus\:opacity-25:focus { + opacity: 0.25; +} + +.focus\:opacity-30:focus { + opacity: 0.3; +} + +.focus\:opacity-40:focus { + opacity: 0.4; +} + +.focus\:opacity-50:focus { + opacity: 0.5; +} + +.focus\:opacity-60:focus { + opacity: 0.6; +} + +.focus\:opacity-70:focus { + opacity: 0.7; +} + +.focus\:opacity-75:focus { + opacity: 0.75; +} + +.focus\:opacity-80:focus { + opacity: 0.8; +} + +.focus\:opacity-90:focus { + opacity: 0.9; +} + +.focus\:opacity-95:focus { + opacity: 0.95; +} + +.focus\:opacity-100:focus { + opacity: 1; +} + +.outline-none { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.outline-white { + outline: 2px dotted white; + outline-offset: 2px; +} + +.outline-black { + outline: 2px dotted black; + outline-offset: 2px; +} + +.focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; +} + +.focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; +} + +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; +} + +.focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; +} + +.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; +} + +.overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; +} + +.overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; +} + +.overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; +} + +.overscroll-y-auto { + overscroll-behavior-y: auto; +} + +.overscroll-y-contain { + overscroll-behavior-y: contain; +} + +.overscroll-y-none { + overscroll-behavior-y: none; +} + +.overscroll-x-auto { + overscroll-behavior-x: auto; +} + +.overscroll-x-contain { + overscroll-behavior-x: contain; +} + +.overscroll-x-none { + overscroll-behavior-x: none; +} + +.p-0 { + padding: 0px; +} + +.p-1 { + padding: 0.25rem; +} + +.p-2 { + padding: 0.5rem; +} + +.p-3 { + padding: 0.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-14 { + padding: 3.5rem; +} + +.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: 0.125rem; +} + +.p-1\.5 { + padding: 0.375rem; +} + +.p-2\.5 { + padding: 0.625rem; +} + +.p-3\.5 { + padding: 0.875rem; +} + +.py-0 { + padding-top: 0px; + padding-bottom: 0px; +} + +.px-0 { + padding-left: 0px; + padding-right: 0px; +} + +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} + +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} + +.py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} + +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} + +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} + +.px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; +} + +.px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; +} + +.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: 0.125rem; + padding-bottom: 0.125rem; +} + +.px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; +} + +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} + +.px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; +} + +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} + +.px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; +} + +.py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; +} + +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; +} + +.pt-0 { + padding-top: 0px; +} + +.pr-0 { + padding-right: 0px; +} + +.pb-0 { + padding-bottom: 0px; +} + +.pl-0 { + padding-left: 0px; +} + +.pt-1 { + padding-top: 0.25rem; +} + +.pr-1 { + padding-right: 0.25rem; +} + +.pb-1 { + padding-bottom: 0.25rem; +} + +.pl-1 { + padding-left: 0.25rem; +} + +.pt-2 { + padding-top: 0.5rem; +} + +.pr-2 { + padding-right: 0.5rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + +.pl-2 { + padding-left: 0.5rem; +} + +.pt-3 { + padding-top: 0.75rem; +} + +.pr-3 { + padding-right: 0.75rem; +} + +.pb-3 { + padding-bottom: 0.75rem; +} + +.pl-3 { + padding-left: 0.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-14 { + padding-top: 3.5rem; +} + +.pr-14 { + padding-right: 3.5rem; +} + +.pb-14 { + padding-bottom: 3.5rem; +} + +.pl-14 { + padding-left: 3.5rem; +} + +.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: 0.125rem; +} + +.pr-0\.5 { + padding-right: 0.125rem; +} + +.pb-0\.5 { + padding-bottom: 0.125rem; +} + +.pl-0\.5 { + padding-left: 0.125rem; +} + +.pt-1\.5 { + padding-top: 0.375rem; +} + +.pr-1\.5 { + padding-right: 0.375rem; +} + +.pb-1\.5 { + padding-bottom: 0.375rem; +} + +.pl-1\.5 { + padding-left: 0.375rem; +} + +.pt-2\.5 { + padding-top: 0.625rem; +} + +.pr-2\.5 { + padding-right: 0.625rem; +} + +.pb-2\.5 { + padding-bottom: 0.625rem; +} + +.pl-2\.5 { + padding-left: 0.625rem; +} + +.pt-3\.5 { + padding-top: 0.875rem; +} + +.pr-3\.5 { + padding-right: 0.875rem; +} + +.pb-3\.5 { + padding-bottom: 0.875rem; +} + +.pl-3\.5 { + padding-left: 0.875rem; +} + +.placeholder-current::-webkit-input-placeholder { + color: currentColor; +} + +.placeholder-current::-moz-placeholder { + color: currentColor; +} + +.placeholder-current:-ms-input-placeholder { + color: currentColor; +} + +.placeholder-current::-ms-input-placeholder { + color: currentColor; +} + +.placeholder-current::placeholder { + color: currentColor; +} + +.placeholder-transparent::-webkit-input-placeholder { + color: transparent; +} + +.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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; +} + +.focus\:placeholder-current:focus::placeholder { + color: currentColor; +} + +.focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; +} + +.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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); +} + +.placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; +} + +.placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; +} + +.placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; +} + +.placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; +} + +.placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; +} + +.placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; +} + +.placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; +} + +.placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; +} + +.placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; +} + +.placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; +} + +.placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; +} + +.placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; +} + +.placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; +} + +.placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; +} + +.placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; +} + +.focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; +} + +.focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; +} + +.focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; +} + +.focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; +} + +.focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; +} + +.focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; +} + +.focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; +} + +.focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; +} + +.focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; +} + +.focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; +} + +.inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; +} + +.inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; +} + +.inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; +} + +.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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; +} + +.inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; +} + +.inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; +} + +.inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; +} + +.-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; +} + +.-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; +} + +.-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; +} + +.-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; +} + +.-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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; +} + +.-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; +} + +.-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; +} + +.-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; +} + +.-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; +} + +.-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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; +} + +.inset-y-0 { + top: 0px; + bottom: 0px; +} + +.inset-x-0 { + right: 0px; + left: 0px; +} + +.inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; +} + +.inset-x-1 { + right: 0.25rem; + left: 0.25rem; +} + +.inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; +} + +.inset-x-2 { + right: 0.5rem; + left: 0.5rem; +} + +.inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; +} + +.inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; +} + +.inset-x-14 { + right: 3.5rem; + left: 3.5rem; +} + +.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: 0.125rem; + bottom: 0.125rem; +} + +.inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; +} + +.inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; +} + +.inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; +} + +.inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; +} + +.inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; +} + +.inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; +} + +.inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; +} + +.-inset-y-0 { + top: 0px; + bottom: 0px; +} + +.-inset-x-0 { + right: 0px; + left: 0px; +} + +.-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; +} + +.-inset-x-1 { + right: -0.25rem; + left: -0.25rem; +} + +.-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; +} + +.-inset-x-2 { + right: -0.5rem; + left: -0.5rem; +} + +.-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; +} + +.-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; +} + +.-inset-x-14 { + right: -3.5rem; + left: -3.5rem; +} + +.-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-px { + top: -1px; + bottom: -1px; +} + +.-inset-x-px { + right: -1px; + left: -1px; +} + +.-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; +} + +.-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; +} + +.-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; +} + +.-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; +} + +.-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; +} + +.-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; +} + +.-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; +} + +.-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; +} + +.inset-x-full { + right: 100%; + left: 100%; +} + +.-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-full { + top: -100%; + bottom: -100%; +} + +.-inset-x-full { + right: -100%; + left: -100%; +} + +.top-0 { + top: 0px; +} + +.right-0 { + right: 0px; +} + +.bottom-0 { + bottom: 0px; +} + +.left-0 { + left: 0px; +} + +.top-1 { + top: 0.25rem; +} + +.right-1 { + right: 0.25rem; +} + +.bottom-1 { + bottom: 0.25rem; +} + +.left-1 { + left: 0.25rem; +} + +.top-2 { + top: 0.5rem; +} + +.right-2 { + right: 0.5rem; +} + +.bottom-2 { + bottom: 0.5rem; +} + +.left-2 { + left: 0.5rem; +} + +.top-3 { + top: 0.75rem; +} + +.right-3 { + right: 0.75rem; +} + +.bottom-3 { + bottom: 0.75rem; +} + +.left-3 { + left: 0.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-14 { + top: 3.5rem; +} + +.right-14 { + right: 3.5rem; +} + +.bottom-14 { + bottom: 3.5rem; +} + +.left-14 { + left: 3.5rem; +} + +.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: 0.125rem; +} + +.right-0\.5 { + right: 0.125rem; +} + +.bottom-0\.5 { + bottom: 0.125rem; +} + +.left-0\.5 { + left: 0.125rem; +} + +.top-1\.5 { + top: 0.375rem; +} + +.right-1\.5 { + right: 0.375rem; +} + +.bottom-1\.5 { + bottom: 0.375rem; +} + +.left-1\.5 { + left: 0.375rem; +} + +.top-2\.5 { + top: 0.625rem; +} + +.right-2\.5 { + right: 0.625rem; +} + +.bottom-2\.5 { + bottom: 0.625rem; +} + +.left-2\.5 { + left: 0.625rem; +} + +.top-3\.5 { + top: 0.875rem; +} + +.right-3\.5 { + right: 0.875rem; +} + +.bottom-3\.5 { + bottom: 0.875rem; +} + +.left-3\.5 { + left: 0.875rem; +} + +.-top-0 { + top: 0px; +} + +.-right-0 { + right: 0px; +} + +.-bottom-0 { + bottom: 0px; +} + +.-left-0 { + left: 0px; +} + +.-top-1 { + top: -0.25rem; +} + +.-right-1 { + right: -0.25rem; +} + +.-bottom-1 { + bottom: -0.25rem; +} + +.-left-1 { + left: -0.25rem; +} + +.-top-2 { + top: -0.5rem; +} + +.-right-2 { + right: -0.5rem; +} + +.-bottom-2 { + bottom: -0.5rem; +} + +.-left-2 { + left: -0.5rem; +} + +.-top-3 { + top: -0.75rem; +} + +.-right-3 { + right: -0.75rem; +} + +.-bottom-3 { + bottom: -0.75rem; +} + +.-left-3 { + left: -0.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-14 { + top: -3.5rem; +} + +.-right-14 { + right: -3.5rem; +} + +.-bottom-14 { + bottom: -3.5rem; +} + +.-left-14 { + left: -3.5rem; +} + +.-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-px { + top: -1px; +} + +.-right-px { + right: -1px; +} + +.-bottom-px { + bottom: -1px; +} + +.-left-px { + left: -1px; +} + +.-top-0\.5 { + top: -0.125rem; +} + +.-right-0\.5 { + right: -0.125rem; +} + +.-bottom-0\.5 { + bottom: -0.125rem; +} + +.-left-0\.5 { + left: -0.125rem; +} + +.-top-1\.5 { + top: -0.375rem; +} + +.-right-1\.5 { + right: -0.375rem; +} + +.-bottom-1\.5 { + bottom: -0.375rem; +} + +.-left-1\.5 { + left: -0.375rem; +} + +.-top-2\.5 { + top: -0.625rem; +} + +.-right-2\.5 { + right: -0.625rem; +} + +.-bottom-2\.5 { + bottom: -0.625rem; +} + +.-left-2\.5 { + left: -0.625rem; +} + +.-top-3\.5 { + top: -0.875rem; +} + +.-right-3\.5 { + right: -0.875rem; +} + +.-bottom-3\.5 { + bottom: -0.875rem; +} + +.-left-3\.5 { + left: -0.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-full { + top: 100%; +} + +.right-full { + right: 100%; +} + +.bottom-full { + bottom: 100%; +} + +.left-full { + left: 100%; +} + +.-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-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; +} + +* { + --tw-shadow: 0 0 #0000; +} + +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.group:hover .group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +* { + --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/); + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgba(59, 130, 246, 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; +} + +.ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-inset { + --tw-ring-inset: inset; +} + +.focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; +} + +.focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.focus\:ring-inset:focus { + --tw-ring-inset: inset; +} + +.ring-offset-current { + --tw-ring-offset-color: currentColor; +} + +.ring-offset-transparent { + --tw-ring-offset-color: transparent; +} + +.ring-offset-black { + --tw-ring-offset-color: #000; +} + +.ring-offset-white { + --tw-ring-offset-color: #fff; +} + +.ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; +} + +.ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; +} + +.ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; +} + +.ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; +} + +.ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; +} + +.ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; +} + +.ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; +} + +.ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; +} + +.ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; +} + +.ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; +} + +.ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; +} + +.ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; +} + +.ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; +} + +.ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; +} + +.ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; +} + +.ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; +} + +.ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; +} + +.ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; +} + +.ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; +} + +.ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; +} + +.ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; +} + +.ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; +} + +.ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; +} + +.ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; +} + +.ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; +} + +.ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; +} + +.ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; +} + +.ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; +} + +.ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; +} + +.ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; +} + +.ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; +} + +.ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; +} + +.ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; +} + +.ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; +} + +.ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; +} + +.ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; +} + +.ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; +} + +.ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; +} + +.ring-offset-violet-800 { + --tw-ring-offset-color: #653394; +} + +.ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; +} + +.ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; +} + +.ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; +} + +.ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; +} + +.ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; +} + +.ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; +} + +.ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; +} + +.ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; +} + +.ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; +} + +.ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; +} + +.ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; +} + +.ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; +} + +.ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; +} + +.ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; +} + +.ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; +} + +.ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; +} + +.ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; +} + +.ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; +} + +.ring-offset-red-700 { + --tw-ring-offset-color: #B34333; +} + +.ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; +} + +.ring-offset-red-900 { + --tw-ring-offset-color: #752C21; +} + +.ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; +} + +.ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; +} + +.ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; +} + +.ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; +} + +.ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; +} + +.ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; +} + +.ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; +} + +.ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; +} + +.ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; +} + +.ring-offset-green-900 { + --tw-ring-offset-color: #156633; +} + +.ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; +} + +.ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; +} + +.ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; +} + +.ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; +} + +.ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; +} + +.ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; +} + +.ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; +} + +.ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; +} + +.ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; +} + +.ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; +} + +.ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; +} + +.ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; +} + +.ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; +} + +.ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; +} + +.ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; +} + +.ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; +} + +.ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; +} + +.ring-offset-gray-700 { + --tw-ring-offset-color: #374151; +} + +.ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; +} + +.ring-offset-gray-900 { + --tw-ring-offset-color: #111827; +} + +.focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; +} + +.focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; +} + +.focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; +} + +.focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; +} + +.focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; +} + +.focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; +} + +.focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; +} + +.focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; +} + +.focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; +} + +.focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; +} + +.focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; +} + +.focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; +} + +.focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; +} + +.focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; +} + +.focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; +} + +.focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; +} + +.focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; +} + +.focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; +} + +.focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; +} + +.focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; +} + +.focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; +} + +.focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; +} + +.focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; +} + +.focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; +} + +.focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; +} + +.focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; +} + +.focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; +} + +.focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; +} + +.focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; +} + +.focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; +} + +.focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; +} + +.focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; +} + +.focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; +} + +.focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; +} + +.focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; +} + +.focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; +} + +.focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; +} + +.focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; +} + +.focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; +} + +.focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; +} + +.focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; +} + +.focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; +} + +.focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; +} + +.focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; +} + +.focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; +} + +.focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; +} + +.focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; +} + +.focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; +} + +.focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; +} + +.focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; +} + +.focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; +} + +.focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; +} + +.focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; +} + +.focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; +} + +.focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; +} + +.focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; +} + +.focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; +} + +.focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; +} + +.focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; +} + +.focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; +} + +.focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; +} + +.focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; +} + +.focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; +} + +.focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; +} + +.focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; +} + +.focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; +} + +.focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; +} + +.focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; +} + +.focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; +} + +.focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; +} + +.focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; +} + +.focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; +} + +.focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; +} + +.focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; +} + +.focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; +} + +.focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; +} + +.focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; +} + +.focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; +} + +.focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; +} + +.focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; +} + +.focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; +} + +.focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; +} + +.focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; +} + +.focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; +} + +.focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; +} + +.focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; +} + +.focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; +} + +.focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; +} + +.focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; +} + +.focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; +} + +.focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; +} + +.focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; +} + +.focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; +} + +.focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; +} + +.focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; +} + +.focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; +} + +.focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; +} + +.focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; +} + +.focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; +} + +.focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; +} + +.focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; +} + +.focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; +} + +.focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; +} + +.focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; +} + +.focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; +} + +.focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; +} + +.focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; +} + +.focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; +} + +.focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; +} + +.focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; +} + +.focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; +} + +.focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; +} + +.focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; +} + +.focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; +} + +.focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; +} + +.focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; +} + +.focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; +} + +.focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; +} + +.focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; +} + +.focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; +} + +.focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; +} + +.focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; +} + +.focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; +} + +.focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; +} + +.focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; +} + +.focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; +} + +.focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; +} + +.focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; +} + +.focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; +} + +.focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; +} + +.focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; +} + +.focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; +} + +.focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; +} + +.focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; +} + +.focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; +} + +.focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; +} + +.focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; +} + +.focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; +} + +.focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; +} + +.focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; +} + +.focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; +} + +.focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; +} + +.focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; +} + +.focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; +} + +.focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; +} + +.focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; +} + +.focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; +} + +.focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; +} + +.focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; +} + +.focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; +} + +.focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; +} + +.focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; +} + +.focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; +} + +.focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; +} + +.focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; +} + +.focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; +} + +.focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; +} + +.focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; +} + +.focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; +} + +.focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; +} + +.focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; +} + +.focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; +} + +.focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; +} + +.focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; +} + +.focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; +} + +.focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; +} + +.focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; +} + +.focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; +} + +.focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; +} + +.focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; +} + +.focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; +} + +.focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; +} + +.focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; +} + +.focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; +} + +.focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; +} + +.focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; +} + +.focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; +} + +.focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; +} + +.focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; +} + +.focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; +} + +.focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; +} + +.focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; +} + +.focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; +} + +.focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; +} + +.focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; +} + +.focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; +} + +.focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; +} + +.focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; +} + +.ring-offset-0 { + --tw-ring-offset-width: 0px; +} + +.ring-offset-1 { + --tw-ring-offset-width: 1px; +} + +.ring-offset-2 { + --tw-ring-offset-width: 2px; +} + +.ring-offset-4 { + --tw-ring-offset-width: 4px; +} + +.ring-offset-8 { + --tw-ring-offset-width: 8px; +} + +.focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; +} + +.focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; +} + +.focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; +} + +.focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; +} + +.focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; +} + +.focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; +} + +.focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; +} + +.focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; +} + +.focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; +} + +.focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; +} + +.ring-current { + --tw-ring-color: currentColor; +} + +.ring-transparent { + --tw-ring-color: transparent; +} + +.ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); +} + +.ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); +} + +.ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); +} + +.ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); +} + +.ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); +} + +.ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); +} + +.ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); +} + +.ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); +} + +.ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); +} + +.ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); +} + +.ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); +} + +.ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); +} + +.ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); +} + +.ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); +} + +.ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); +} + +.ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); +} + +.ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); +} + +.ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); +} + +.ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); +} + +.ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); +} + +.ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); +} + +.ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); +} + +.ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); +} + +.ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); +} + +.ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); +} + +.ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); +} + +.ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); +} + +.ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); +} + +.ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); +} + +.ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); +} + +.ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); +} + +.ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); +} + +.ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +} + +.ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); +} + +.ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); +} + +.ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); +} + +.ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); +} + +.ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); +} + +.ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); +} + +.ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); +} + +.ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); +} + +.ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); +} + +.ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); +} + +.ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); +} + +.ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); +} + +.ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); +} + +.ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); +} + +.ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); +} + +.ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); +} + +.ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); +} + +.ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); +} + +.ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); +} + +.ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); +} + +.ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); +} + +.ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); +} + +.ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); +} + +.ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); +} + +.ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); +} + +.ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); +} + +.ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); +} + +.ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); +} + +.ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); +} + +.ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +} + +.ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); +} + +.ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); +} + +.ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); +} + +.ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); +} + +.ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +} + +.ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +} + +.ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +} + +.ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +} + +.ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +} + +.ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +} + +.ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +} + +.ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +} + +.ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +} + +.ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +} + +.focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; +} + +.focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; +} + +.focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); +} + +.focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); +} + +.focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); +} + +.focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); +} + +.focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); +} + +.focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); +} + +.focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); +} + +.focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); +} + +.focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +} + +.focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +} + +.focus\:ring-current:focus { + --tw-ring-color: currentColor; +} + +.focus\:ring-transparent:focus { + --tw-ring-color: transparent; +} + +.focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); +} + +.focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); +} + +.focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); +} + +.focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); +} + +.focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); +} + +.focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); +} + +.focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); +} + +.focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); +} + +.focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); +} + +.focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); +} + +.focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); +} + +.focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); +} + +.focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); +} + +.focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); +} + +.focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); +} + +.focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); +} + +.focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); +} + +.focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); +} + +.focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); +} + +.focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); +} + +.focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); +} + +.focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); +} + +.focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); +} + +.focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); +} + +.focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); +} + +.focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); +} + +.focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); +} + +.focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); +} + +.focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); +} + +.ring-opacity-0 { + --tw-ring-opacity: 0; +} + +.ring-opacity-5 { + --tw-ring-opacity: 0.05; +} + +.ring-opacity-10 { + --tw-ring-opacity: 0.1; +} + +.ring-opacity-20 { + --tw-ring-opacity: 0.2; +} + +.ring-opacity-25 { + --tw-ring-opacity: 0.25; +} + +.ring-opacity-30 { + --tw-ring-opacity: 0.3; +} + +.ring-opacity-40 { + --tw-ring-opacity: 0.4; +} + +.ring-opacity-50 { + --tw-ring-opacity: 0.5; +} + +.ring-opacity-60 { + --tw-ring-opacity: 0.6; +} + +.ring-opacity-70 { + --tw-ring-opacity: 0.7; +} + +.ring-opacity-75 { + --tw-ring-opacity: 0.75; +} + +.ring-opacity-80 { + --tw-ring-opacity: 0.8; +} + +.ring-opacity-90 { + --tw-ring-opacity: 0.9; +} + +.ring-opacity-95 { + --tw-ring-opacity: 0.95; +} + +.ring-opacity-100 { + --tw-ring-opacity: 1; +} + +.focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; +} + +.focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; +} + +.focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; +} + +.focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; +} + +.focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; +} + +.focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; +} + +.focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; +} + +.focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; +} + +.focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; +} + +.focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; +} + +.focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; +} + +.focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; +} + +.focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; +} + +.focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; +} + +.focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; +} + +.focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; +} + +.focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; +} + +.focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; +} + +.focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; +} + +.focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; +} + +.focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; +} + +.focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; +} + +.focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; +} + +.focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; +} + +.focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; +} + +.focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; +} + +.focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; +} + +.focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; +} + +.focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; +} + +.focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; +} + +.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-current { + color: currentColor; +} + +.text-transparent { + color: transparent; +} + +.text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-current { + color: currentColor; +} + +.group:hover .group-hover\:text-transparent { + color: transparent; +} + +.group:hover .group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.group:hover .group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus-within\:text-current:focus-within { + color: currentColor; +} + +.focus-within\:text-transparent:focus-within { + color: transparent; +} + +.focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.hover\:text-current:hover { + color: currentColor; +} + +.hover\:text-transparent:hover { + color: transparent; +} + +.hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus\:text-current:focus { + color: currentColor; +} + +.focus\:text-transparent:focus { + color: transparent; +} + +.focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); +} + +.focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); +} + +.focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); +} + +.focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); +} + +.focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); +} + +.focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); +} + +.focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); +} + +.focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); +} + +.focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); +} + +.focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); +} + +.focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); +} + +.focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); +} + +.focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); +} + +.focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); +} + +.focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); +} + +.focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); +} + +.focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); +} + +.focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); +} + +.focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); +} + +.focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); +} + +.focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); +} + +.focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); +} + +.focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); +} + +.focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); +} + +.focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); +} + +.focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); +} + +.focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); +} + +.focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); +} + +.focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); +} + +.focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); +} + +.focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); +} + +.focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); +} + +.focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); +} + +.focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); +} + +.focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); +} + +.focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); +} + +.focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); +} + +.focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); +} + +.focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); +} + +.focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); +} + +.focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); +} + +.focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); +} + +.focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); +} + +.focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); +} + +.focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); +} + +.focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); +} + +.focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); +} + +.focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); +} + +.focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); +} + +.focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); +} + +.focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); +} + +.focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); +} + +.focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); +} + +.focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); +} + +.focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); +} + +.focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); +} + +.focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); +} + +.focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); +} + +.focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); +} + +.focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); +} + +.focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); +} + +.focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); +} + +.focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); +} + +.focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); +} + +.focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); +} + +.focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); +} + +.focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); +} + +.focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); +} + +.focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); +} + +.text-opacity-0 { + --tw-text-opacity: 0; +} + +.text-opacity-5 { + --tw-text-opacity: 0.05; +} + +.text-opacity-10 { + --tw-text-opacity: 0.1; +} + +.text-opacity-20 { + --tw-text-opacity: 0.2; +} + +.text-opacity-25 { + --tw-text-opacity: 0.25; +} + +.text-opacity-30 { + --tw-text-opacity: 0.3; +} + +.text-opacity-40 { + --tw-text-opacity: 0.4; +} + +.text-opacity-50 { + --tw-text-opacity: 0.5; +} + +.text-opacity-60 { + --tw-text-opacity: 0.6; +} + +.text-opacity-70 { + --tw-text-opacity: 0.7; +} + +.text-opacity-75 { + --tw-text-opacity: 0.75; +} + +.text-opacity-80 { + --tw-text-opacity: 0.8; +} + +.text-opacity-90 { + --tw-text-opacity: 0.9; +} + +.text-opacity-95 { + --tw-text-opacity: 0.95; +} + +.text-opacity-100 { + --tw-text-opacity: 1; +} + +.group:hover .group-hover\:text-opacity-0 { + --tw-text-opacity: 0; +} + +.group:hover .group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; +} + +.group:hover .group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; +} + +.group:hover .group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; +} + +.group:hover .group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; +} + +.group:hover .group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; +} + +.group:hover .group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; +} + +.group:hover .group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; +} + +.group:hover .group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; +} + +.group:hover .group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; +} + +.group:hover .group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; +} + +.group:hover .group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; +} + +.group:hover .group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; +} + +.group:hover .group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; +} + +.group:hover .group-hover\:text-opacity-100 { + --tw-text-opacity: 1; +} + +.focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; +} + +.focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; +} + +.focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; +} + +.focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; +} + +.focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; +} + +.focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; +} + +.focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; +} + +.focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; +} + +.focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; +} + +.focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; +} + +.focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; +} + +.focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; +} + +.focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; +} + +.focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; +} + +.focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; +} + +.hover\:text-opacity-0:hover { + --tw-text-opacity: 0; +} + +.hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; +} + +.hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; +} + +.hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; +} + +.hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; +} + +.hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; +} + +.hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; +} + +.hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; +} + +.hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; +} + +.hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; +} + +.hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; +} + +.hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; +} + +.hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; +} + +.hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; +} + +.hover\:text-opacity-100:hover { + --tw-text-opacity: 1; +} + +.focus\:text-opacity-0:focus { + --tw-text-opacity: 0; +} + +.focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; +} + +.focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; +} + +.focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; +} + +.focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; +} + +.focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; +} + +.focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; +} + +.focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; +} + +.focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; +} + +.focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; +} + +.focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; +} + +.focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; +} + +.focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; +} + +.focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; +} + +.focus\:text-opacity-100:focus { + --tw-text-opacity: 1; +} + +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.overflow-ellipsis { + text-overflow: ellipsis; +} + +.overflow-clip { + text-overflow: clip; +} + +.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; +} + +.focus-within\:underline:focus-within { + text-decoration: underline; +} + +.focus-within\:line-through:focus-within { + text-decoration: line-through; +} + +.focus-within\:no-underline:focus-within { + 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; +} + +.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); +} + +.normal-nums { + font-variant-numeric: normal; +} + +.ordinal { + --tw-ordinal: ordinal; +} + +.slashed-zero { + --tw-slashed-zero: slashed-zero; +} + +.lining-nums { + --tw-numeric-figure: lining-nums; +} + +.oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; +} + +.proportional-nums { + --tw-numeric-spacing: proportional-nums; +} + +.tabular-nums { + --tw-numeric-spacing: tabular-nums; +} + +.diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; +} + +.stacked-fractions { + --tw-numeric-fraction: stacked-fractions; +} + +.tracking-tighter { + letter-spacing: -0.02em; +} + +.tracking-tight { + letter-spacing: -1px; +} + +.tracking-normal { + letter-spacing: 0em; +} + +.tracking-wide { + letter-spacing: 0.03em; +} + +.tracking-wider { + letter-spacing: 0.08em; +} + +.tracking-widest { + letter-spacing: 0.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-nowrap { + 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; +} + +.w-0 { + width: 0px; +} + +.w-1 { + width: 0.25rem; +} + +.w-2 { + width: 0.5rem; +} + +.w-3 { + width: 0.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-14 { + width: 3.5rem; +} + +.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: 0.125rem; +} + +.w-1\.5 { + width: 0.375rem; +} + +.w-2\.5 { + width: 0.625rem; +} + +.w-3\.5 { + width: 0.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; +} + +.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 { + gap: 0px; +} + +.gap-1 { + gap: 0.25rem; +} + +.gap-2 { + gap: 0.5rem; +} + +.gap-3 { + gap: 0.75rem; +} + +.gap-4 { + gap: 1rem; +} + +.gap-5 { + gap: 1.25rem; +} + +.gap-6 { + gap: 1.5rem; +} + +.gap-7 { + gap: 1.75rem; +} + +.gap-8 { + gap: 2rem; +} + +.gap-9 { + gap: 2.25rem; +} + +.gap-10 { + gap: 2.5rem; +} + +.gap-11 { + gap: 2.75rem; +} + +.gap-12 { + gap: 3rem; +} + +.gap-14 { + gap: 3.5rem; +} + +.gap-16 { + gap: 4rem; +} + +.gap-20 { + gap: 5rem; +} + +.gap-24 { + gap: 6rem; +} + +.gap-28 { + gap: 7rem; +} + +.gap-32 { + gap: 8rem; +} + +.gap-36 { + gap: 9rem; +} + +.gap-40 { + gap: 10rem; +} + +.gap-44 { + gap: 11rem; +} + +.gap-48 { + gap: 12rem; +} + +.gap-52 { + gap: 13rem; +} + +.gap-56 { + gap: 14rem; +} + +.gap-60 { + gap: 15rem; +} + +.gap-64 { + gap: 16rem; +} + +.gap-72 { + gap: 18rem; +} + +.gap-80 { + gap: 20rem; +} + +.gap-96 { + gap: 24rem; +} + +.gap-px { + gap: 1px; +} + +.gap-0\.5 { + gap: 0.125rem; +} + +.gap-1\.5 { + gap: 0.375rem; +} + +.gap-2\.5 { + gap: 0.625rem; +} + +.gap-3\.5 { + gap: 0.875rem; +} + +.gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; +} + +.gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; +} + +.gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; +} + +.gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; +} + +.gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} + +.gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; +} + +.gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; +} + +.gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; +} + +.gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; +} + +.gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; +} + +.gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; +} + +.gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; +} + +.gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; +} + +.gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; +} + +.gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; +} + +.gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; +} + +.gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; +} + +.gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; +} + +.gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; +} + +.gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; +} + +.gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; +} + +.gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; +} + +.gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; +} + +.gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; +} + +.gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; +} + +.gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; +} + +.gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; +} + +.gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; +} + +.gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; +} + +.gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; +} + +.gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; +} + +.gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; +} + +.gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; +} + +.gap-y-0 { + row-gap: 0px; +} + +.gap-y-1 { + row-gap: 0.25rem; +} + +.gap-y-2 { + row-gap: 0.5rem; +} + +.gap-y-3 { + row-gap: 0.75rem; +} + +.gap-y-4 { + row-gap: 1rem; +} + +.gap-y-5 { + row-gap: 1.25rem; +} + +.gap-y-6 { + row-gap: 1.5rem; +} + +.gap-y-7 { + row-gap: 1.75rem; +} + +.gap-y-8 { + row-gap: 2rem; +} + +.gap-y-9 { + row-gap: 2.25rem; +} + +.gap-y-10 { + row-gap: 2.5rem; +} + +.gap-y-11 { + row-gap: 2.75rem; +} + +.gap-y-12 { + row-gap: 3rem; +} + +.gap-y-14 { + row-gap: 3.5rem; +} + +.gap-y-16 { + row-gap: 4rem; +} + +.gap-y-20 { + row-gap: 5rem; +} + +.gap-y-24 { + row-gap: 6rem; +} + +.gap-y-28 { + row-gap: 7rem; +} + +.gap-y-32 { + row-gap: 8rem; +} + +.gap-y-36 { + row-gap: 9rem; +} + +.gap-y-40 { + row-gap: 10rem; +} + +.gap-y-44 { + row-gap: 11rem; +} + +.gap-y-48 { + row-gap: 12rem; +} + +.gap-y-52 { + row-gap: 13rem; +} + +.gap-y-56 { + row-gap: 14rem; +} + +.gap-y-60 { + row-gap: 15rem; +} + +.gap-y-64 { + row-gap: 16rem; +} + +.gap-y-72 { + row-gap: 18rem; +} + +.gap-y-80 { + row-gap: 20rem; +} + +.gap-y-96 { + row-gap: 24rem; +} + +.gap-y-px { + row-gap: 1px; +} + +.gap-y-0\.5 { + row-gap: 0.125rem; +} + +.gap-y-1\.5 { + row-gap: 0.375rem; +} + +.gap-y-2\.5 { + row-gap: 0.625rem; +} + +.gap-y-3\.5 { + row-gap: 0.875rem; +} + +.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; +} + +.auto-cols-auto { + grid-auto-columns: auto; +} + +.auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; +} + +.auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; +} + +.auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); +} + +.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-span-full { + grid-column: 1 / -1; +} + +.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; +} + +.auto-rows-auto { + grid-auto-rows: auto; +} + +.auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; +} + +.auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; +} + +.auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); +} + +.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-span-full { + grid-row: 1 / -1; +} + +.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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); +} + +.transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.scale-x-0 { + --tw-scale-x: 0; +} + +.scale-x-50 { + --tw-scale-x: .5; +} + +.scale-x-75 { + --tw-scale-x: .75; +} + +.scale-x-90 { + --tw-scale-x: .9; +} + +.scale-x-95 { + --tw-scale-x: .95; +} + +.scale-x-100 { + --tw-scale-x: 1; +} + +.scale-x-105 { + --tw-scale-x: 1.05; +} + +.scale-x-110 { + --tw-scale-x: 1.1; +} + +.scale-x-125 { + --tw-scale-x: 1.25; +} + +.scale-x-150 { + --tw-scale-x: 1.5; +} + +.scale-y-0 { + --tw-scale-y: 0; +} + +.scale-y-50 { + --tw-scale-y: .5; +} + +.scale-y-75 { + --tw-scale-y: .75; +} + +.scale-y-90 { + --tw-scale-y: .9; +} + +.scale-y-95 { + --tw-scale-y: .95; +} + +.scale-y-100 { + --tw-scale-y: 1; +} + +.scale-y-105 { + --tw-scale-y: 1.05; +} + +.scale-y-110 { + --tw-scale-y: 1.1; +} + +.scale-y-125 { + --tw-scale-y: 1.25; +} + +.scale-y-150 { + --tw-scale-y: 1.5; +} + +.hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.hover\:scale-x-0:hover { + --tw-scale-x: 0; +} + +.hover\:scale-x-50:hover { + --tw-scale-x: .5; +} + +.hover\:scale-x-75:hover { + --tw-scale-x: .75; +} + +.hover\:scale-x-90:hover { + --tw-scale-x: .9; +} + +.hover\:scale-x-95:hover { + --tw-scale-x: .95; +} + +.hover\:scale-x-100:hover { + --tw-scale-x: 1; +} + +.hover\:scale-x-105:hover { + --tw-scale-x: 1.05; +} + +.hover\:scale-x-110:hover { + --tw-scale-x: 1.1; +} + +.hover\:scale-x-125:hover { + --tw-scale-x: 1.25; +} + +.hover\:scale-x-150:hover { + --tw-scale-x: 1.5; +} + +.hover\:scale-y-0:hover { + --tw-scale-y: 0; +} + +.hover\:scale-y-50:hover { + --tw-scale-y: .5; +} + +.hover\:scale-y-75:hover { + --tw-scale-y: .75; +} + +.hover\:scale-y-90:hover { + --tw-scale-y: .9; +} + +.hover\:scale-y-95:hover { + --tw-scale-y: .95; +} + +.hover\:scale-y-100:hover { + --tw-scale-y: 1; +} + +.hover\:scale-y-105:hover { + --tw-scale-y: 1.05; +} + +.hover\:scale-y-110:hover { + --tw-scale-y: 1.1; +} + +.hover\:scale-y-125:hover { + --tw-scale-y: 1.25; +} + +.hover\:scale-y-150:hover { + --tw-scale-y: 1.5; +} + +.focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; +} + +.focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; +} + +.focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; +} + +.focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; +} + +.focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; +} + +.focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; +} + +.focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; +} + +.focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; +} + +.focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; +} + +.focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; +} + +.focus\:scale-x-0:focus { + --tw-scale-x: 0; +} + +.focus\:scale-x-50:focus { + --tw-scale-x: .5; +} + +.focus\:scale-x-75:focus { + --tw-scale-x: .75; +} + +.focus\:scale-x-90:focus { + --tw-scale-x: .9; +} + +.focus\:scale-x-95:focus { + --tw-scale-x: .95; +} + +.focus\:scale-x-100:focus { + --tw-scale-x: 1; +} + +.focus\:scale-x-105:focus { + --tw-scale-x: 1.05; +} + +.focus\:scale-x-110:focus { + --tw-scale-x: 1.1; +} + +.focus\:scale-x-125:focus { + --tw-scale-x: 1.25; +} + +.focus\:scale-x-150:focus { + --tw-scale-x: 1.5; +} + +.focus\:scale-y-0:focus { + --tw-scale-y: 0; +} + +.focus\:scale-y-50:focus { + --tw-scale-y: .5; +} + +.focus\:scale-y-75:focus { + --tw-scale-y: .75; +} + +.focus\:scale-y-90:focus { + --tw-scale-y: .9; +} + +.focus\:scale-y-95:focus { + --tw-scale-y: .95; +} + +.focus\:scale-y-100:focus { + --tw-scale-y: 1; +} + +.focus\:scale-y-105:focus { + --tw-scale-y: 1.05; +} + +.focus\:scale-y-110:focus { + --tw-scale-y: 1.1; +} + +.focus\:scale-y-125:focus { + --tw-scale-y: 1.25; +} + +.focus\:scale-y-150:focus { + --tw-scale-y: 1.5; +} + +.rotate-0 { + --tw-rotate: 0deg; +} + +.rotate-1 { + --tw-rotate: 1deg; +} + +.rotate-2 { + --tw-rotate: 2deg; +} + +.rotate-3 { + --tw-rotate: 3deg; +} + +.rotate-6 { + --tw-rotate: 6deg; +} + +.rotate-12 { + --tw-rotate: 12deg; +} + +.rotate-45 { + --tw-rotate: 45deg; +} + +.rotate-90 { + --tw-rotate: 90deg; +} + +.rotate-180 { + --tw-rotate: 180deg; +} + +.-rotate-180 { + --tw-rotate: -180deg; +} + +.-rotate-90 { + --tw-rotate: -90deg; +} + +.-rotate-45 { + --tw-rotate: -45deg; +} + +.-rotate-12 { + --tw-rotate: -12deg; +} + +.-rotate-6 { + --tw-rotate: -6deg; +} + +.-rotate-3 { + --tw-rotate: -3deg; +} + +.-rotate-2 { + --tw-rotate: -2deg; +} + +.-rotate-1 { + --tw-rotate: -1deg; +} + +.hover\:rotate-0:hover { + --tw-rotate: 0deg; +} + +.hover\:rotate-1:hover { + --tw-rotate: 1deg; +} + +.hover\:rotate-2:hover { + --tw-rotate: 2deg; +} + +.hover\:rotate-3:hover { + --tw-rotate: 3deg; +} + +.hover\:rotate-6:hover { + --tw-rotate: 6deg; +} + +.hover\:rotate-12:hover { + --tw-rotate: 12deg; +} + +.hover\:rotate-45:hover { + --tw-rotate: 45deg; +} + +.hover\:rotate-90:hover { + --tw-rotate: 90deg; +} + +.hover\:rotate-180:hover { + --tw-rotate: 180deg; +} + +.hover\:-rotate-180:hover { + --tw-rotate: -180deg; +} + +.hover\:-rotate-90:hover { + --tw-rotate: -90deg; +} + +.hover\:-rotate-45:hover { + --tw-rotate: -45deg; +} + +.hover\:-rotate-12:hover { + --tw-rotate: -12deg; +} + +.hover\:-rotate-6:hover { + --tw-rotate: -6deg; +} + +.hover\:-rotate-3:hover { + --tw-rotate: -3deg; +} + +.hover\:-rotate-2:hover { + --tw-rotate: -2deg; +} + +.hover\:-rotate-1:hover { + --tw-rotate: -1deg; +} + +.focus\:rotate-0:focus { + --tw-rotate: 0deg; +} + +.focus\:rotate-1:focus { + --tw-rotate: 1deg; +} + +.focus\:rotate-2:focus { + --tw-rotate: 2deg; +} + +.focus\:rotate-3:focus { + --tw-rotate: 3deg; +} + +.focus\:rotate-6:focus { + --tw-rotate: 6deg; +} + +.focus\:rotate-12:focus { + --tw-rotate: 12deg; +} + +.focus\:rotate-45:focus { + --tw-rotate: 45deg; +} + +.focus\:rotate-90:focus { + --tw-rotate: 90deg; +} + +.focus\:rotate-180:focus { + --tw-rotate: 180deg; +} + +.focus\:-rotate-180:focus { + --tw-rotate: -180deg; +} + +.focus\:-rotate-90:focus { + --tw-rotate: -90deg; +} + +.focus\:-rotate-45:focus { + --tw-rotate: -45deg; +} + +.focus\:-rotate-12:focus { + --tw-rotate: -12deg; +} + +.focus\:-rotate-6:focus { + --tw-rotate: -6deg; +} + +.focus\:-rotate-3:focus { + --tw-rotate: -3deg; +} + +.focus\:-rotate-2:focus { + --tw-rotate: -2deg; +} + +.focus\:-rotate-1:focus { + --tw-rotate: -1deg; +} + +.translate-x-0 { + --tw-translate-x: 0px; +} + +.translate-x-1 { + --tw-translate-x: 0.25rem; +} + +.translate-x-2 { + --tw-translate-x: 0.5rem; +} + +.translate-x-3 { + --tw-translate-x: 0.75rem; +} + +.translate-x-4 { + --tw-translate-x: 1rem; +} + +.translate-x-5 { + --tw-translate-x: 1.25rem; +} + +.translate-x-6 { + --tw-translate-x: 1.5rem; +} + +.translate-x-7 { + --tw-translate-x: 1.75rem; +} + +.translate-x-8 { + --tw-translate-x: 2rem; +} + +.translate-x-9 { + --tw-translate-x: 2.25rem; +} + +.translate-x-10 { + --tw-translate-x: 2.5rem; +} + +.translate-x-11 { + --tw-translate-x: 2.75rem; +} + +.translate-x-12 { + --tw-translate-x: 3rem; +} + +.translate-x-14 { + --tw-translate-x: 3.5rem; +} + +.translate-x-16 { + --tw-translate-x: 4rem; +} + +.translate-x-20 { + --tw-translate-x: 5rem; +} + +.translate-x-24 { + --tw-translate-x: 6rem; +} + +.translate-x-28 { + --tw-translate-x: 7rem; +} + +.translate-x-32 { + --tw-translate-x: 8rem; +} + +.translate-x-36 { + --tw-translate-x: 9rem; +} + +.translate-x-40 { + --tw-translate-x: 10rem; +} + +.translate-x-44 { + --tw-translate-x: 11rem; +} + +.translate-x-48 { + --tw-translate-x: 12rem; +} + +.translate-x-52 { + --tw-translate-x: 13rem; +} + +.translate-x-56 { + --tw-translate-x: 14rem; +} + +.translate-x-60 { + --tw-translate-x: 15rem; +} + +.translate-x-64 { + --tw-translate-x: 16rem; +} + +.translate-x-72 { + --tw-translate-x: 18rem; +} + +.translate-x-80 { + --tw-translate-x: 20rem; +} + +.translate-x-96 { + --tw-translate-x: 24rem; +} + +.translate-x-px { + --tw-translate-x: 1px; +} + +.translate-x-0\.5 { + --tw-translate-x: 0.125rem; +} + +.translate-x-1\.5 { + --tw-translate-x: 0.375rem; +} + +.translate-x-2\.5 { + --tw-translate-x: 0.625rem; +} + +.translate-x-3\.5 { + --tw-translate-x: 0.875rem; +} + +.-translate-x-0 { + --tw-translate-x: 0px; +} + +.-translate-x-1 { + --tw-translate-x: -0.25rem; +} + +.-translate-x-2 { + --tw-translate-x: -0.5rem; +} + +.-translate-x-3 { + --tw-translate-x: -0.75rem; +} + +.-translate-x-4 { + --tw-translate-x: -1rem; +} + +.-translate-x-5 { + --tw-translate-x: -1.25rem; +} + +.-translate-x-6 { + --tw-translate-x: -1.5rem; +} + +.-translate-x-7 { + --tw-translate-x: -1.75rem; +} + +.-translate-x-8 { + --tw-translate-x: -2rem; +} + +.-translate-x-9 { + --tw-translate-x: -2.25rem; +} + +.-translate-x-10 { + --tw-translate-x: -2.5rem; +} + +.-translate-x-11 { + --tw-translate-x: -2.75rem; +} + +.-translate-x-12 { + --tw-translate-x: -3rem; +} + +.-translate-x-14 { + --tw-translate-x: -3.5rem; +} + +.-translate-x-16 { + --tw-translate-x: -4rem; +} + +.-translate-x-20 { + --tw-translate-x: -5rem; +} + +.-translate-x-24 { + --tw-translate-x: -6rem; +} + +.-translate-x-28 { + --tw-translate-x: -7rem; +} + +.-translate-x-32 { + --tw-translate-x: -8rem; +} + +.-translate-x-36 { + --tw-translate-x: -9rem; +} + +.-translate-x-40 { + --tw-translate-x: -10rem; +} + +.-translate-x-44 { + --tw-translate-x: -11rem; +} + +.-translate-x-48 { + --tw-translate-x: -12rem; +} + +.-translate-x-52 { + --tw-translate-x: -13rem; +} + +.-translate-x-56 { + --tw-translate-x: -14rem; +} + +.-translate-x-60 { + --tw-translate-x: -15rem; +} + +.-translate-x-64 { + --tw-translate-x: -16rem; +} + +.-translate-x-72 { + --tw-translate-x: -18rem; +} + +.-translate-x-80 { + --tw-translate-x: -20rem; +} + +.-translate-x-96 { + --tw-translate-x: -24rem; +} + +.-translate-x-px { + --tw-translate-x: -1px; +} + +.-translate-x-0\.5 { + --tw-translate-x: -0.125rem; +} + +.-translate-x-1\.5 { + --tw-translate-x: -0.375rem; +} + +.-translate-x-2\.5 { + --tw-translate-x: -0.625rem; +} + +.-translate-x-3\.5 { + --tw-translate-x: -0.875rem; +} + +.translate-x-1\/2 { + --tw-translate-x: 50%; +} + +.translate-x-1\/3 { + --tw-translate-x: 33.333333%; +} + +.translate-x-2\/3 { + --tw-translate-x: 66.666667%; +} + +.translate-x-1\/4 { + --tw-translate-x: 25%; +} + +.translate-x-2\/4 { + --tw-translate-x: 50%; +} + +.translate-x-3\/4 { + --tw-translate-x: 75%; +} + +.translate-x-full { + --tw-translate-x: 100%; +} + +.-translate-x-1\/2 { + --tw-translate-x: -50%; +} + +.-translate-x-1\/3 { + --tw-translate-x: -33.333333%; +} + +.-translate-x-2\/3 { + --tw-translate-x: -66.666667%; +} + +.-translate-x-1\/4 { + --tw-translate-x: -25%; +} + +.-translate-x-2\/4 { + --tw-translate-x: -50%; +} + +.-translate-x-3\/4 { + --tw-translate-x: -75%; +} + +.-translate-x-full { + --tw-translate-x: -100%; +} + +.translate-y-0 { + --tw-translate-y: 0px; +} + +.translate-y-1 { + --tw-translate-y: 0.25rem; +} + +.translate-y-2 { + --tw-translate-y: 0.5rem; +} + +.translate-y-3 { + --tw-translate-y: 0.75rem; +} + +.translate-y-4 { + --tw-translate-y: 1rem; +} + +.translate-y-5 { + --tw-translate-y: 1.25rem; +} + +.translate-y-6 { + --tw-translate-y: 1.5rem; +} + +.translate-y-7 { + --tw-translate-y: 1.75rem; +} + +.translate-y-8 { + --tw-translate-y: 2rem; +} + +.translate-y-9 { + --tw-translate-y: 2.25rem; +} + +.translate-y-10 { + --tw-translate-y: 2.5rem; +} + +.translate-y-11 { + --tw-translate-y: 2.75rem; +} + +.translate-y-12 { + --tw-translate-y: 3rem; +} + +.translate-y-14 { + --tw-translate-y: 3.5rem; +} + +.translate-y-16 { + --tw-translate-y: 4rem; +} + +.translate-y-20 { + --tw-translate-y: 5rem; +} + +.translate-y-24 { + --tw-translate-y: 6rem; +} + +.translate-y-28 { + --tw-translate-y: 7rem; +} + +.translate-y-32 { + --tw-translate-y: 8rem; +} + +.translate-y-36 { + --tw-translate-y: 9rem; +} + +.translate-y-40 { + --tw-translate-y: 10rem; +} + +.translate-y-44 { + --tw-translate-y: 11rem; +} + +.translate-y-48 { + --tw-translate-y: 12rem; +} + +.translate-y-52 { + --tw-translate-y: 13rem; +} + +.translate-y-56 { + --tw-translate-y: 14rem; +} + +.translate-y-60 { + --tw-translate-y: 15rem; +} + +.translate-y-64 { + --tw-translate-y: 16rem; +} + +.translate-y-72 { + --tw-translate-y: 18rem; +} + +.translate-y-80 { + --tw-translate-y: 20rem; +} + +.translate-y-96 { + --tw-translate-y: 24rem; +} + +.translate-y-px { + --tw-translate-y: 1px; +} + +.translate-y-0\.5 { + --tw-translate-y: 0.125rem; +} + +.translate-y-1\.5 { + --tw-translate-y: 0.375rem; +} + +.translate-y-2\.5 { + --tw-translate-y: 0.625rem; +} + +.translate-y-3\.5 { + --tw-translate-y: 0.875rem; +} + +.-translate-y-0 { + --tw-translate-y: 0px; +} + +.-translate-y-1 { + --tw-translate-y: -0.25rem; +} + +.-translate-y-2 { + --tw-translate-y: -0.5rem; +} + +.-translate-y-3 { + --tw-translate-y: -0.75rem; +} + +.-translate-y-4 { + --tw-translate-y: -1rem; +} + +.-translate-y-5 { + --tw-translate-y: -1.25rem; +} + +.-translate-y-6 { + --tw-translate-y: -1.5rem; +} + +.-translate-y-7 { + --tw-translate-y: -1.75rem; +} + +.-translate-y-8 { + --tw-translate-y: -2rem; +} + +.-translate-y-9 { + --tw-translate-y: -2.25rem; +} + +.-translate-y-10 { + --tw-translate-y: -2.5rem; +} + +.-translate-y-11 { + --tw-translate-y: -2.75rem; +} + +.-translate-y-12 { + --tw-translate-y: -3rem; +} + +.-translate-y-14 { + --tw-translate-y: -3.5rem; +} + +.-translate-y-16 { + --tw-translate-y: -4rem; +} + +.-translate-y-20 { + --tw-translate-y: -5rem; +} + +.-translate-y-24 { + --tw-translate-y: -6rem; +} + +.-translate-y-28 { + --tw-translate-y: -7rem; +} + +.-translate-y-32 { + --tw-translate-y: -8rem; +} + +.-translate-y-36 { + --tw-translate-y: -9rem; +} + +.-translate-y-40 { + --tw-translate-y: -10rem; +} + +.-translate-y-44 { + --tw-translate-y: -11rem; +} + +.-translate-y-48 { + --tw-translate-y: -12rem; +} + +.-translate-y-52 { + --tw-translate-y: -13rem; +} + +.-translate-y-56 { + --tw-translate-y: -14rem; +} + +.-translate-y-60 { + --tw-translate-y: -15rem; +} + +.-translate-y-64 { + --tw-translate-y: -16rem; +} + +.-translate-y-72 { + --tw-translate-y: -18rem; +} + +.-translate-y-80 { + --tw-translate-y: -20rem; +} + +.-translate-y-96 { + --tw-translate-y: -24rem; +} + +.-translate-y-px { + --tw-translate-y: -1px; +} + +.-translate-y-0\.5 { + --tw-translate-y: -0.125rem; +} + +.-translate-y-1\.5 { + --tw-translate-y: -0.375rem; +} + +.-translate-y-2\.5 { + --tw-translate-y: -0.625rem; +} + +.-translate-y-3\.5 { + --tw-translate-y: -0.875rem; +} + +.translate-y-1\/2 { + --tw-translate-y: 50%; +} + +.translate-y-1\/3 { + --tw-translate-y: 33.333333%; +} + +.translate-y-2\/3 { + --tw-translate-y: 66.666667%; +} + +.translate-y-1\/4 { + --tw-translate-y: 25%; +} + +.translate-y-2\/4 { + --tw-translate-y: 50%; +} + +.translate-y-3\/4 { + --tw-translate-y: 75%; +} + +.translate-y-full { + --tw-translate-y: 100%; +} + +.-translate-y-1\/2 { + --tw-translate-y: -50%; +} + +.-translate-y-1\/3 { + --tw-translate-y: -33.333333%; +} + +.-translate-y-2\/3 { + --tw-translate-y: -66.666667%; +} + +.-translate-y-1\/4 { + --tw-translate-y: -25%; +} + +.-translate-y-2\/4 { + --tw-translate-y: -50%; +} + +.-translate-y-3\/4 { + --tw-translate-y: -75%; +} + +.-translate-y-full { + --tw-translate-y: -100%; +} + +.hover\:translate-x-0:hover { + --tw-translate-x: 0px; +} + +.hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; +} + +.hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; +} + +.hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; +} + +.hover\:translate-x-4:hover { + --tw-translate-x: 1rem; +} + +.hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; +} + +.hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; +} + +.hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; +} + +.hover\:translate-x-8:hover { + --tw-translate-x: 2rem; +} + +.hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; +} + +.hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; +} + +.hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; +} + +.hover\:translate-x-12:hover { + --tw-translate-x: 3rem; +} + +.hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; +} + +.hover\:translate-x-16:hover { + --tw-translate-x: 4rem; +} + +.hover\:translate-x-20:hover { + --tw-translate-x: 5rem; +} + +.hover\:translate-x-24:hover { + --tw-translate-x: 6rem; +} + +.hover\:translate-x-28:hover { + --tw-translate-x: 7rem; +} + +.hover\:translate-x-32:hover { + --tw-translate-x: 8rem; +} + +.hover\:translate-x-36:hover { + --tw-translate-x: 9rem; +} + +.hover\:translate-x-40:hover { + --tw-translate-x: 10rem; +} + +.hover\:translate-x-44:hover { + --tw-translate-x: 11rem; +} + +.hover\:translate-x-48:hover { + --tw-translate-x: 12rem; +} + +.hover\:translate-x-52:hover { + --tw-translate-x: 13rem; +} + +.hover\:translate-x-56:hover { + --tw-translate-x: 14rem; +} + +.hover\:translate-x-60:hover { + --tw-translate-x: 15rem; +} + +.hover\:translate-x-64:hover { + --tw-translate-x: 16rem; +} + +.hover\:translate-x-72:hover { + --tw-translate-x: 18rem; +} + +.hover\:translate-x-80:hover { + --tw-translate-x: 20rem; +} + +.hover\:translate-x-96:hover { + --tw-translate-x: 24rem; +} + +.hover\:translate-x-px:hover { + --tw-translate-x: 1px; +} + +.hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; +} + +.hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; +} + +.hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; +} + +.hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; +} + +.hover\:-translate-x-0:hover { + --tw-translate-x: 0px; +} + +.hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; +} + +.hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; +} + +.hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; +} + +.hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; +} + +.hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; +} + +.hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; +} + +.hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; +} + +.hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; +} + +.hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; +} + +.hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; +} + +.hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; +} + +.hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; +} + +.hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; +} + +.hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; +} + +.hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; +} + +.hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; +} + +.hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; +} + +.hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; +} + +.hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; +} + +.hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; +} + +.hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; +} + +.hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; +} + +.hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; +} + +.hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; +} + +.hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; +} + +.hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; +} + +.hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; +} + +.hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; +} + +.hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; +} + +.hover\:-translate-x-px:hover { + --tw-translate-x: -1px; +} + +.hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; +} + +.hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; +} + +.hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; +} + +.hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; +} + +.hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; +} + +.hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; +} + +.hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; +} + +.hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; +} + +.hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; +} + +.hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; +} + +.hover\:translate-x-full:hover { + --tw-translate-x: 100%; +} + +.hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; +} + +.hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; +} + +.hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; +} + +.hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; +} + +.hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; +} + +.hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; +} + +.hover\:-translate-x-full:hover { + --tw-translate-x: -100%; +} + +.hover\:translate-y-0:hover { + --tw-translate-y: 0px; +} + +.hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; +} + +.hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; +} + +.hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; +} + +.hover\:translate-y-4:hover { + --tw-translate-y: 1rem; +} + +.hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; +} + +.hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; +} + +.hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; +} + +.hover\:translate-y-8:hover { + --tw-translate-y: 2rem; +} + +.hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; +} + +.hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; +} + +.hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; +} + +.hover\:translate-y-12:hover { + --tw-translate-y: 3rem; +} + +.hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; +} + +.hover\:translate-y-16:hover { + --tw-translate-y: 4rem; +} + +.hover\:translate-y-20:hover { + --tw-translate-y: 5rem; +} + +.hover\:translate-y-24:hover { + --tw-translate-y: 6rem; +} + +.hover\:translate-y-28:hover { + --tw-translate-y: 7rem; +} + +.hover\:translate-y-32:hover { + --tw-translate-y: 8rem; +} + +.hover\:translate-y-36:hover { + --tw-translate-y: 9rem; +} + +.hover\:translate-y-40:hover { + --tw-translate-y: 10rem; +} + +.hover\:translate-y-44:hover { + --tw-translate-y: 11rem; +} + +.hover\:translate-y-48:hover { + --tw-translate-y: 12rem; +} + +.hover\:translate-y-52:hover { + --tw-translate-y: 13rem; +} + +.hover\:translate-y-56:hover { + --tw-translate-y: 14rem; +} + +.hover\:translate-y-60:hover { + --tw-translate-y: 15rem; +} + +.hover\:translate-y-64:hover { + --tw-translate-y: 16rem; +} + +.hover\:translate-y-72:hover { + --tw-translate-y: 18rem; +} + +.hover\:translate-y-80:hover { + --tw-translate-y: 20rem; +} + +.hover\:translate-y-96:hover { + --tw-translate-y: 24rem; +} + +.hover\:translate-y-px:hover { + --tw-translate-y: 1px; +} + +.hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; +} + +.hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; +} + +.hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; +} + +.hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; +} + +.hover\:-translate-y-0:hover { + --tw-translate-y: 0px; +} + +.hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; +} + +.hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; +} + +.hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; +} + +.hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; +} + +.hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; +} + +.hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; +} + +.hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; +} + +.hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; +} + +.hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; +} + +.hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; +} + +.hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; +} + +.hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; +} + +.hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; +} + +.hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; +} + +.hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; +} + +.hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; +} + +.hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; +} + +.hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; +} + +.hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; +} + +.hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; +} + +.hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; +} + +.hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; +} + +.hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; +} + +.hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; +} + +.hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; +} + +.hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; +} + +.hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; +} + +.hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; +} + +.hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; +} + +.hover\:-translate-y-px:hover { + --tw-translate-y: -1px; +} + +.hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; +} + +.hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; +} + +.hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; +} + +.hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; +} + +.hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; +} + +.hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; +} + +.hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; +} + +.hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; +} + +.hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; +} + +.hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; +} + +.hover\:translate-y-full:hover { + --tw-translate-y: 100%; +} + +.hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; +} + +.hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; +} + +.hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; +} + +.hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; +} + +.hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; +} + +.hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; +} + +.hover\:-translate-y-full:hover { + --tw-translate-y: -100%; +} + +.focus\:translate-x-0:focus { + --tw-translate-x: 0px; +} + +.focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; +} + +.focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; +} + +.focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; +} + +.focus\:translate-x-4:focus { + --tw-translate-x: 1rem; +} + +.focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; +} + +.focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; +} + +.focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; +} + +.focus\:translate-x-8:focus { + --tw-translate-x: 2rem; +} + +.focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; +} + +.focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; +} + +.focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; +} + +.focus\:translate-x-12:focus { + --tw-translate-x: 3rem; +} + +.focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; +} + +.focus\:translate-x-16:focus { + --tw-translate-x: 4rem; +} + +.focus\:translate-x-20:focus { + --tw-translate-x: 5rem; +} + +.focus\:translate-x-24:focus { + --tw-translate-x: 6rem; +} + +.focus\:translate-x-28:focus { + --tw-translate-x: 7rem; +} + +.focus\:translate-x-32:focus { + --tw-translate-x: 8rem; +} + +.focus\:translate-x-36:focus { + --tw-translate-x: 9rem; +} + +.focus\:translate-x-40:focus { + --tw-translate-x: 10rem; +} + +.focus\:translate-x-44:focus { + --tw-translate-x: 11rem; +} + +.focus\:translate-x-48:focus { + --tw-translate-x: 12rem; +} + +.focus\:translate-x-52:focus { + --tw-translate-x: 13rem; +} + +.focus\:translate-x-56:focus { + --tw-translate-x: 14rem; +} + +.focus\:translate-x-60:focus { + --tw-translate-x: 15rem; +} + +.focus\:translate-x-64:focus { + --tw-translate-x: 16rem; +} + +.focus\:translate-x-72:focus { + --tw-translate-x: 18rem; +} + +.focus\:translate-x-80:focus { + --tw-translate-x: 20rem; +} + +.focus\:translate-x-96:focus { + --tw-translate-x: 24rem; +} + +.focus\:translate-x-px:focus { + --tw-translate-x: 1px; +} + +.focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; +} + +.focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; +} + +.focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; +} + +.focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; +} + +.focus\:-translate-x-0:focus { + --tw-translate-x: 0px; +} + +.focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; +} + +.focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; +} + +.focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; +} + +.focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; +} + +.focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; +} + +.focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; +} + +.focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; +} + +.focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; +} + +.focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; +} + +.focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; +} + +.focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; +} + +.focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; +} + +.focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; +} + +.focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; +} + +.focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; +} + +.focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; +} + +.focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; +} + +.focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; +} + +.focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; +} + +.focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; +} + +.focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; +} + +.focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; +} + +.focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; +} + +.focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; +} + +.focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; +} + +.focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; +} + +.focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; +} + +.focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; +} + +.focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; +} + +.focus\:-translate-x-px:focus { + --tw-translate-x: -1px; +} + +.focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; +} + +.focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; +} + +.focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; +} + +.focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; +} + +.focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; +} + +.focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; +} + +.focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; +} + +.focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; +} + +.focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; +} + +.focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; +} + +.focus\:translate-x-full:focus { + --tw-translate-x: 100%; +} + +.focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; +} + +.focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; +} + +.focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; +} + +.focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; +} + +.focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; +} + +.focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; +} + +.focus\:-translate-x-full:focus { + --tw-translate-x: -100%; +} + +.focus\:translate-y-0:focus { + --tw-translate-y: 0px; +} + +.focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; +} + +.focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; +} + +.focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; +} + +.focus\:translate-y-4:focus { + --tw-translate-y: 1rem; +} + +.focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; +} + +.focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; +} + +.focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; +} + +.focus\:translate-y-8:focus { + --tw-translate-y: 2rem; +} + +.focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; +} + +.focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; +} + +.focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; +} + +.focus\:translate-y-12:focus { + --tw-translate-y: 3rem; +} + +.focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; +} + +.focus\:translate-y-16:focus { + --tw-translate-y: 4rem; +} + +.focus\:translate-y-20:focus { + --tw-translate-y: 5rem; +} + +.focus\:translate-y-24:focus { + --tw-translate-y: 6rem; +} + +.focus\:translate-y-28:focus { + --tw-translate-y: 7rem; +} + +.focus\:translate-y-32:focus { + --tw-translate-y: 8rem; +} + +.focus\:translate-y-36:focus { + --tw-translate-y: 9rem; +} + +.focus\:translate-y-40:focus { + --tw-translate-y: 10rem; +} + +.focus\:translate-y-44:focus { + --tw-translate-y: 11rem; +} + +.focus\:translate-y-48:focus { + --tw-translate-y: 12rem; +} + +.focus\:translate-y-52:focus { + --tw-translate-y: 13rem; +} + +.focus\:translate-y-56:focus { + --tw-translate-y: 14rem; +} + +.focus\:translate-y-60:focus { + --tw-translate-y: 15rem; +} + +.focus\:translate-y-64:focus { + --tw-translate-y: 16rem; +} + +.focus\:translate-y-72:focus { + --tw-translate-y: 18rem; +} + +.focus\:translate-y-80:focus { + --tw-translate-y: 20rem; +} + +.focus\:translate-y-96:focus { + --tw-translate-y: 24rem; +} + +.focus\:translate-y-px:focus { + --tw-translate-y: 1px; +} + +.focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; +} + +.focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; +} + +.focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; +} + +.focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; +} + +.focus\:-translate-y-0:focus { + --tw-translate-y: 0px; +} + +.focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; +} + +.focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; +} + +.focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; +} + +.focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; +} + +.focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; +} + +.focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; +} + +.focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; +} + +.focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; +} + +.focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; +} + +.focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; +} + +.focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; +} + +.focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; +} + +.focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; +} + +.focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; +} + +.focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; +} + +.focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; +} + +.focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; +} + +.focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; +} + +.focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; +} + +.focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; +} + +.focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; +} + +.focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; +} + +.focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; +} + +.focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; +} + +.focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; +} + +.focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; +} + +.focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; +} + +.focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; +} + +.focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; +} + +.focus\:-translate-y-px:focus { + --tw-translate-y: -1px; +} + +.focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; +} + +.focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; +} + +.focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; +} + +.focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; +} + +.focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; +} + +.focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; +} + +.focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; +} + +.focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; +} + +.focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; +} + +.focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; +} + +.focus\:translate-y-full:focus { + --tw-translate-y: 100%; +} + +.focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; +} + +.focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; +} + +.focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; +} + +.focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; +} + +.focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; +} + +.focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; +} + +.focus\:-translate-y-full:focus { + --tw-translate-y: -100%; +} + +.skew-x-0 { + --tw-skew-x: 0deg; +} + +.skew-x-1 { + --tw-skew-x: 1deg; +} + +.skew-x-2 { + --tw-skew-x: 2deg; +} + +.skew-x-3 { + --tw-skew-x: 3deg; +} + +.skew-x-6 { + --tw-skew-x: 6deg; +} + +.skew-x-12 { + --tw-skew-x: 12deg; +} + +.-skew-x-12 { + --tw-skew-x: -12deg; +} + +.-skew-x-6 { + --tw-skew-x: -6deg; +} + +.-skew-x-3 { + --tw-skew-x: -3deg; +} + +.-skew-x-2 { + --tw-skew-x: -2deg; +} + +.-skew-x-1 { + --tw-skew-x: -1deg; +} + +.skew-y-0 { + --tw-skew-y: 0deg; +} + +.skew-y-1 { + --tw-skew-y: 1deg; +} + +.skew-y-2 { + --tw-skew-y: 2deg; +} + +.skew-y-3 { + --tw-skew-y: 3deg; +} + +.skew-y-6 { + --tw-skew-y: 6deg; +} + +.skew-y-12 { + --tw-skew-y: 12deg; +} + +.-skew-y-12 { + --tw-skew-y: -12deg; +} + +.-skew-y-6 { + --tw-skew-y: -6deg; +} + +.-skew-y-3 { + --tw-skew-y: -3deg; +} + +.-skew-y-2 { + --tw-skew-y: -2deg; +} + +.-skew-y-1 { + --tw-skew-y: -1deg; +} + +.hover\:skew-x-0:hover { + --tw-skew-x: 0deg; +} + +.hover\:skew-x-1:hover { + --tw-skew-x: 1deg; +} + +.hover\:skew-x-2:hover { + --tw-skew-x: 2deg; +} + +.hover\:skew-x-3:hover { + --tw-skew-x: 3deg; +} + +.hover\:skew-x-6:hover { + --tw-skew-x: 6deg; +} + +.hover\:skew-x-12:hover { + --tw-skew-x: 12deg; +} + +.hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; +} + +.hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; +} + +.hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; +} + +.hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; +} + +.hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; +} + +.hover\:skew-y-0:hover { + --tw-skew-y: 0deg; +} + +.hover\:skew-y-1:hover { + --tw-skew-y: 1deg; +} + +.hover\:skew-y-2:hover { + --tw-skew-y: 2deg; +} + +.hover\:skew-y-3:hover { + --tw-skew-y: 3deg; +} + +.hover\:skew-y-6:hover { + --tw-skew-y: 6deg; +} + +.hover\:skew-y-12:hover { + --tw-skew-y: 12deg; +} + +.hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; +} + +.hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; +} + +.hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; +} + +.hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; +} + +.hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; +} + +.focus\:skew-x-0:focus { + --tw-skew-x: 0deg; +} + +.focus\:skew-x-1:focus { + --tw-skew-x: 1deg; +} + +.focus\:skew-x-2:focus { + --tw-skew-x: 2deg; +} + +.focus\:skew-x-3:focus { + --tw-skew-x: 3deg; +} + +.focus\:skew-x-6:focus { + --tw-skew-x: 6deg; +} + +.focus\:skew-x-12:focus { + --tw-skew-x: 12deg; +} + +.focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; +} + +.focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; +} + +.focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; +} + +.focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; +} + +.focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; +} + +.focus\:skew-y-0:focus { + --tw-skew-y: 0deg; +} + +.focus\:skew-y-1:focus { + --tw-skew-y: 1deg; +} + +.focus\:skew-y-2:focus { + --tw-skew-y: 2deg; +} + +.focus\:skew-y-3:focus { + --tw-skew-y: 3deg; +} + +.focus\:skew-y-6:focus { + --tw-skew-y: 6deg; +} + +.focus\:skew-y-12:focus { + --tw-skew-y: 12deg; +} + +.focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; +} + +.focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; +} + +.focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; +} + +.focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; +} + +.focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; +} + +.transition-none { + transition-property: none; +} + +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); +} + +.ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); +} + +.ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); +} + +.duration-75 { + transition-duration: 75ms; +} + +.duration-100 { + transition-duration: 100ms; +} + +.duration-150 { + transition-duration: 150ms; +} + +.duration-200 { + transition-duration: 200ms; +} + +.duration-300 { + transition-duration: 300ms; +} + +.duration-500 { + transition-duration: 500ms; +} + +.duration-700 { + transition-duration: 700ms; +} + +.duration-1000 { + transition-duration: 1000ms; +} + +.delay-75 { + transition-delay: 75ms; +} + +.delay-100 { + transition-delay: 100ms; +} + +.delay-150 { + transition-delay: 150ms; +} + +.delay-200 { + transition-delay: 200ms; +} + +.delay-300 { + transition-delay: 300ms; +} + +.delay-500 { + transition-delay: 500ms; +} + +.delay-700 { + transition-delay: 700ms; +} + +.delay-1000 { + transition-delay: 1000ms; +} + +@-webkit-keyframes spin { + to { + transform: rotate(360deg); + } +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} + +@-webkit-keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } +} + +@keyframes ping { + 75%, 100% { + transform: scale(2); + opacity: 0; + } +} + +@-webkit-keyframes pulse { + 50% { + opacity: .5; + } +} + +@keyframes pulse { + 50% { + opacity: .5; + } +} + +@-webkit-keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +@keyframes bounce { + 0%, 100% { + transform: translateY(-25%); + -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1); + animation-timing-function: cubic-bezier(0.8,0,1,1); + } + + 50% { + transform: none; + -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1); + animation-timing-function: cubic-bezier(0,0,0.2,1); + } +} + +.animate-none { + -webkit-animation: none; + animation: none; +} + +.animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; +} + +.animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} + +.animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +.animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; +} + +@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; + } + } + + @media (min-width: 1536px) { + .sm\:container { + max-width: 1536px; + } + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .sm\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .sm\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .sm\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .sm\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .sm\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .sm\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .sm\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .sm\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .sm\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .sm\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .sm\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .sm\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .sm\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .sm\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .sm\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .sm\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .sm\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .sm\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .sm\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .sm\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .sm\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .sm\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .sm\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .sm\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .sm\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .sm\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .sm\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .sm\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .sm\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .sm\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .sm\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .sm\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .sm\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .sm\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .sm\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .sm\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .sm\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .sm\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .sm\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .sm\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .sm\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .sm\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .sm\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .sm\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .sm\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .sm\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .sm\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .sm\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .sm\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .sm\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .sm\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .sm\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .sm\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .sm\:bg-clip-padding { + background-clip: padding-box; + } + + .sm\:bg-clip-content { + background-clip: content-box; + } + + .sm\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .sm\:bg-current { + background-color: currentColor; + } + + .sm\:bg-transparent { + background-color: transparent; + } + + .sm\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .sm\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .sm\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .sm\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .sm\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .sm\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-current:hover { + background-color: currentColor; + } + + .sm\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .sm\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-current:focus { + background-color: currentColor; + } + + .sm\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .sm\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .sm\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .sm\:bg-none { + background-image: none; + } + + .sm\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .sm\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .sm\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:to-current { + --tw-gradient-to: currentColor; + } + + .sm\:to-transparent { + --tw-gradient-to: transparent; + } + + .sm\:to-black { + --tw-gradient-to: #000; + } + + .sm\:to-white { + --tw-gradient-to: #fff; + } + + .sm\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .sm\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .sm\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .sm\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .sm\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .sm\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .sm\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .sm\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .sm\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .sm\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .sm\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .sm\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .sm\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .sm\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .sm\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .sm\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .sm\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .sm\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .sm\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .sm\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .sm\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .sm\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .sm\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .sm\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .sm\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .sm\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .sm\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .sm\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .sm\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .sm\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .sm\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .sm\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .sm\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .sm\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .sm\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .sm\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .sm\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .sm\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .sm\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .sm\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .sm\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .sm\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .sm\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .sm\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .sm\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .sm\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .sm\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .sm\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .sm\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .sm\:to-green-900 { + --tw-gradient-to: #156633; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .sm\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .sm\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .sm\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .sm\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .sm\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .sm\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .sm\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .sm\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .sm\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .sm\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .sm\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .sm\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .sm\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .sm\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .sm\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .sm\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .sm\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .sm\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .sm\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .sm\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .sm\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .sm\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .sm\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .sm\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .sm\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .sm\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .sm\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .sm\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .sm\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .sm\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .sm\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .sm\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .sm\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .sm\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .sm\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .sm\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .sm\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .sm\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .sm\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .sm\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .sm\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .sm\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .sm\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .sm\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .sm\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .sm\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .sm\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .sm\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .sm\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .sm\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .sm\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .sm\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .sm\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .sm\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .sm\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .sm\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .sm\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .sm\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .sm\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .sm\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .sm\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .sm\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .sm\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .sm\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .sm\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .sm\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .sm\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .sm\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .sm\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .sm\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .sm\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .sm\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .sm\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .sm\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .sm\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .sm\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .sm\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .sm\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .sm\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .sm\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .sm\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .sm\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .sm\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .sm\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .sm\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .sm\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .sm\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .sm\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .sm\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .sm\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .sm\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .sm\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .sm\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .sm\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .sm\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .sm\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .sm\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .sm\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .sm\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .sm\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .sm\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .sm\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .sm\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .sm\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .sm\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .sm\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .sm\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .sm\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .sm\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .sm\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .sm\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .sm\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .sm\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .sm\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .sm\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .sm\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .sm\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .sm\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .sm\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .sm\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .sm\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .sm\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .sm\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .sm\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .sm\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .sm\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .sm\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .sm\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .sm\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .sm\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .sm\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .sm\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .sm\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .sm\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .sm\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .sm\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .sm\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .sm\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .sm\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .sm\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .sm\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .sm\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .sm\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .sm\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .sm\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .sm\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .sm\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .sm\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .sm\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .sm\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .sm\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .sm\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .sm\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .sm\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .sm\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .sm\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .sm\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .sm\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .sm\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .sm\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .sm\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .sm\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .sm\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .sm\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .sm\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .sm\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .sm\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .sm\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .sm\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .sm\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .sm\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .sm\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .sm\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .sm\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .sm\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .sm\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .sm\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .sm\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .sm\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .sm\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .sm\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .sm\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .sm\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .sm\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .sm\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .sm\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .sm\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .sm\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .sm\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .sm\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .sm\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .sm\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .sm\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .sm\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .sm\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .sm\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .sm\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .sm\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .sm\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .sm\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .sm\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .sm\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .sm\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .sm\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .sm\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .sm\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .sm\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .sm\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .sm\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .sm\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .sm\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .sm\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .sm\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .sm\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .sm\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .sm\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .sm\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .sm\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .sm\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .sm\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .sm\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .sm\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .sm\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .sm\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .sm\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .sm\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .sm\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .sm\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .sm\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .sm\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .sm\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .sm\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .sm\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .sm\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .sm\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .sm\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .sm\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .sm\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .sm\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .sm\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .sm\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .sm\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .sm\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .sm\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .sm\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .sm\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .sm\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .sm\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .sm\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .sm\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .sm\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .sm\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .sm\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .sm\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .sm\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .sm\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .sm\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .sm\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .sm\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .sm\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .sm\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .sm\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .sm\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .sm\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .sm\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .sm\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .sm\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .sm\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .sm\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .sm\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .sm\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .sm\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .sm\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .sm\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .sm\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .sm\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .sm\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .sm\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .sm\:border-transparent { + border-color: transparent; + } + + .sm\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .sm\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .sm\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .sm\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .sm\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .sm\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:hover\:border-current:hover { + border-color: currentColor; + } + + .sm\:hover\:border-transparent:hover { + border-color: transparent; + } + + .sm\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:focus\:border-current:focus { + border-color: currentColor; + } + + .sm\:focus\:border-transparent:focus { + border-color: transparent; + } + + .sm\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .sm\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .sm\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .sm\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .sm\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .sm\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .sm\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .sm\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .sm\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .sm\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .sm\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .sm\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .sm\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .sm\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .sm\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .sm\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .sm\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .sm\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .sm\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .sm\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .sm\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .sm\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .sm\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .sm\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .sm\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .sm\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .sm\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .sm\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .sm\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .sm\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .sm\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .sm\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .sm\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .sm\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .sm\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .sm\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .sm\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .sm\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .sm\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .sm\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .sm\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .sm\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .sm\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .sm\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .sm\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .sm\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .sm\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .sm\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .sm\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .sm\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .sm\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .sm\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .sm\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .sm\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .sm\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .sm\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .sm\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .sm\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .sm\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .sm\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .sm\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .sm\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .sm\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .sm\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .sm\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .sm\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .sm\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .sm\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .sm\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .sm\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .sm\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .sm\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .sm\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .sm\:rounded-none { + border-radius: 0; + } + + .sm\:rounded-sm { + border-radius: 0.125rem; + } + + .sm\:rounded { + border-radius: 0.25rem; + } + + .sm\:rounded-md { + border-radius: 0.375rem; + } + + .sm\:rounded-lg { + border-radius: 0.5rem; + } + + .sm\:rounded-xl { + border-radius: 0.675rem; + } + + .sm\:rounded-2xl { + border-radius: 0.75rem; + } + + .sm\:rounded-3xl { + border-radius: 0.875rem; + } + + .sm\:rounded-4xl { + border-radius: 1rem; + } + + .sm\:rounded-5xl { + border-radius: 1.25rem; + } + + .sm\:rounded-6xl { + border-radius: 1.375rem; + } + + .sm\:rounded-7xl { + border-radius: 1.5rem; + } + + .sm\:rounded-8xl { + border-radius: 2rem; + } + + .sm\:rounded-9xl { + border-radius: 2.25rem; + } + + .sm\:rounded-10xl { + border-radius: 2.5rem; + } + + .sm\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .sm\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .sm\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .sm\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .sm\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .sm\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .sm\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .sm\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .sm\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .sm\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .sm\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .sm\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .sm\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .sm\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .sm\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .sm\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .sm\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .sm\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .sm\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .sm\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .sm\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .sm\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .sm\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .sm\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .sm\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .sm\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .sm\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .sm\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .sm\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .sm\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .sm\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .sm\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .sm\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .sm\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .sm\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .sm\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .sm\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .sm\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .sm\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .sm\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .sm\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .sm\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .sm\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .sm\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .sm\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .sm\:rounded-l-11xl { + 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: 0.125rem; + } + + .sm\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .sm\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .sm\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .sm\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .sm\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .sm\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .sm\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .sm\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .sm\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .sm\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .sm\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .sm\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .sm\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .sm\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .sm\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .sm\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .sm\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .sm\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .sm\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .sm\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .sm\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .sm\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .sm\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .sm\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .sm\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .sm\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .sm\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .sm\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .sm\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .sm\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .sm\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .sm\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .sm\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .sm\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .sm\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .sm\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .sm\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .sm\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .sm\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .sm\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .sm\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .sm\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .sm\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .sm\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .sm\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .sm\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .sm\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .sm\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .sm\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .sm\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .sm\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .sm\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .sm\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .sm\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .sm\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .sm\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .sm\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .sm\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .sm\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .sm\:place-items-auto { + place-items: auto; + } + + .sm\:place-items-start { + place-items: start; + } + + .sm\:place-items-end { + place-items: end; + } + + .sm\:place-items-center { + place-items: center; + } + + .sm\:place-items-stretch { + place-items: stretch; + } + + .sm\:place-content-center { + place-content: center; + } + + .sm\:place-content-start { + place-content: start; + } + + .sm\:place-content-end { + place-content: end; + } + + .sm\:place-content-between { + place-content: space-between; + } + + .sm\:place-content-around { + place-content: space-around; + } + + .sm\:place-content-evenly { + place-content: space-evenly; + } + + .sm\:place-content-stretch { + place-content: stretch; + } + + .sm\:place-self-auto { + place-self: auto; + } + + .sm\:place-self-start { + place-self: start; + } + + .sm\:place-self-end { + place-self: end; + } + + .sm\:place-self-center { + place-self: center; + } + + .sm\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .sm\:justify-items-start { + justify-items: start; + } + + .sm\:justify-items-end { + justify-items: end; + } + + .sm\:justify-items-center { + justify-items: center; + } + + .sm\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .sm\:justify-self-start { + justify-self: start; + } + + .sm\:justify-self-end { + justify-self: end; + } + + .sm\:justify-self-center { + justify-self: center; + } + + .sm\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .sm\:clear-right { + clear: right; + } + + .sm\:clear-both { + clear: both; + } + + .sm\:clear-none { + clear: none; + } + + .sm\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .sm\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .sm\:h-1 { + height: 0.25rem; + } + + .sm\:h-2 { + height: 0.5rem; + } + + .sm\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:h-1\.5 { + height: 0.375rem; + } + + .sm\:h-2\.5 { + height: 0.625rem; + } + + .sm\:h-3\.5 { + height: 0.875rem; + } + + .sm\:h-full { + height: 100%; + } + + .sm\:h-screen { + height: 100vh; + } + + .sm\:text-xxs { + font-size: 0.6875rem; + } + + .sm\:text-xs { + font-size: 0.75rem; + } + + .sm\:text-sm { + font-size: 0.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: 3.75rem; + } + + .sm\:text-7xl { + font-size: 4.5rem; + } + + .sm\:text-8xl { + font-size: 6rem; + } + + .sm\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .sm\:m-1 { + margin: 0.25rem; + } + + .sm\:m-2 { + margin: 0.5rem; + } + + .sm\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:m-1\.5 { + margin: 0.375rem; + } + + .sm\:m-2\.5 { + margin: 0.625rem; + } + + .sm\:m-3\.5 { + margin: 0.875rem; + } + + .sm\:-m-0 { + margin: 0px; + } + + .sm\:-m-1 { + margin: -0.25rem; + } + + .sm\:-m-2 { + margin: -0.5rem; + } + + .sm\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .sm\:-m-1\.5 { + margin: -0.375rem; + } + + .sm\:-m-2\.5 { + margin: -0.625rem; + } + + .sm\:-m-3\.5 { + margin: -0.875rem; + } + + .sm\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .sm\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .sm\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .sm\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .sm\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .sm\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .sm\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .sm\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .sm\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .sm\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .sm\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .sm\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .sm\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .sm\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .sm\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .sm\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .sm\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .sm\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .sm\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .sm\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .sm\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .sm\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .sm\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .sm\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .sm\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .sm\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .sm\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .sm\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .sm\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .sm\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .sm\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .sm\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .sm\:mt-0 { + margin-top: 0px; + } + + .sm\:mr-0 { + margin-right: 0px; + } + + .sm\:mb-0 { + margin-bottom: 0px; + } + + .sm\:ml-0 { + margin-left: 0px; + } + + .sm\:mt-1 { + margin-top: 0.25rem; + } + + .sm\:mr-1 { + margin-right: 0.25rem; + } + + .sm\:mb-1 { + margin-bottom: 0.25rem; + } + + .sm\:ml-1 { + margin-left: 0.25rem; + } + + .sm\:mt-2 { + margin-top: 0.5rem; + } + + .sm\:mr-2 { + margin-right: 0.5rem; + } + + .sm\:mb-2 { + margin-bottom: 0.5rem; + } + + .sm\:ml-2 { + margin-left: 0.5rem; + } + + .sm\:mt-3 { + margin-top: 0.75rem; + } + + .sm\:mr-3 { + margin-right: 0.75rem; + } + + .sm\:mb-3 { + margin-bottom: 0.75rem; + } + + .sm\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .sm\:mr-0\.5 { + margin-right: 0.125rem; + } + + .sm\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .sm\:ml-0\.5 { + margin-left: 0.125rem; + } + + .sm\:mt-1\.5 { + margin-top: 0.375rem; + } + + .sm\:mr-1\.5 { + margin-right: 0.375rem; + } + + .sm\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .sm\:ml-1\.5 { + margin-left: 0.375rem; + } + + .sm\:mt-2\.5 { + margin-top: 0.625rem; + } + + .sm\:mr-2\.5 { + margin-right: 0.625rem; + } + + .sm\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .sm\:ml-2\.5 { + margin-left: 0.625rem; + } + + .sm\:mt-3\.5 { + margin-top: 0.875rem; + } + + .sm\:mr-3\.5 { + margin-right: 0.875rem; + } + + .sm\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .sm\:ml-3\.5 { + margin-left: 0.875rem; + } + + .sm\:-mt-0 { + margin-top: 0px; + } + + .sm\:-mr-0 { + margin-right: 0px; + } + + .sm\:-mb-0 { + margin-bottom: 0px; + } + + .sm\:-ml-0 { + margin-left: 0px; + } + + .sm\:-mt-1 { + margin-top: -0.25rem; + } + + .sm\:-mr-1 { + margin-right: -0.25rem; + } + + .sm\:-mb-1 { + margin-bottom: -0.25rem; + } + + .sm\:-ml-1 { + margin-left: -0.25rem; + } + + .sm\:-mt-2 { + margin-top: -0.5rem; + } + + .sm\:-mr-2 { + margin-right: -0.5rem; + } + + .sm\:-mb-2 { + margin-bottom: -0.5rem; + } + + .sm\:-ml-2 { + margin-left: -0.5rem; + } + + .sm\:-mt-3 { + margin-top: -0.75rem; + } + + .sm\:-mr-3 { + margin-right: -0.75rem; + } + + .sm\:-mb-3 { + margin-bottom: -0.75rem; + } + + .sm\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .sm\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .sm\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .sm\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .sm\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .sm\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .sm\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .sm\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .sm\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .sm\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .sm\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .sm\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .sm\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .sm\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .sm\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .sm\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .sm\:max-h-full { + max-height: 100%; + } + + .sm\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .sm\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .sm\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .sm\:opacity-10 { + opacity: 0.1; + } + + .sm\:opacity-20 { + opacity: 0.2; + } + + .sm\:opacity-25 { + opacity: 0.25; + } + + .sm\:opacity-30 { + opacity: 0.3; + } + + .sm\:opacity-40 { + opacity: 0.4; + } + + .sm\:opacity-50 { + opacity: 0.5; + } + + .sm\:opacity-60 { + opacity: 0.6; + } + + .sm\:opacity-70 { + opacity: 0.7; + } + + .sm\:opacity-75 { + opacity: 0.75; + } + + .sm\:opacity-80 { + opacity: 0.8; + } + + .sm\:opacity-90 { + opacity: 0.9; + } + + .sm\:opacity-95 { + opacity: 0.95; + } + + .sm\:opacity-100 { + opacity: 1; + } + + .group:hover .sm\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .sm\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .sm\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .sm\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .sm\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .sm\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .sm\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .sm\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .sm\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .sm\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .sm\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .sm\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .sm\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .sm\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .sm\:group-hover\:opacity-100 { + opacity: 1; + } + + .sm\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .sm\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .sm\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .sm\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .sm\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .sm\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .sm\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .sm\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .sm\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .sm\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .sm\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .sm\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .sm\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .sm\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .sm\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .sm\:hover\:opacity-0:hover { + opacity: 0; + } + + .sm\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .sm\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .sm\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .sm\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .sm\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .sm\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .sm\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .sm\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .sm\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .sm\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .sm\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .sm\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .sm\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .sm\:hover\:opacity-100:hover { + opacity: 1; + } + + .sm\:focus\:opacity-0:focus { + opacity: 0; + } + + .sm\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .sm\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .sm\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .sm\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .sm\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .sm\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .sm\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .sm\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .sm\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .sm\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .sm\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .sm\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .sm\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .sm\:focus\:opacity-100:focus { + opacity: 1; + } + + .sm\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .sm\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .sm\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .sm\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .sm\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .sm\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .sm\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .sm\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .sm\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .sm\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .sm\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .sm\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .sm\:p-0 { + padding: 0px; + } + + .sm\:p-1 { + padding: 0.25rem; + } + + .sm\:p-2 { + padding: 0.5rem; + } + + .sm\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:p-1\.5 { + padding: 0.375rem; + } + + .sm\:p-2\.5 { + padding: 0.625rem; + } + + .sm\:p-3\.5 { + padding: 0.875rem; + } + + .sm\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .sm\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .sm\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .sm\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .sm\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .sm\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .sm\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .sm\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .sm\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .sm\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .sm\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .sm\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .sm\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .sm\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .sm\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .sm\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .sm\:pt-0 { + padding-top: 0px; + } + + .sm\:pr-0 { + padding-right: 0px; + } + + .sm\:pb-0 { + padding-bottom: 0px; + } + + .sm\:pl-0 { + padding-left: 0px; + } + + .sm\:pt-1 { + padding-top: 0.25rem; + } + + .sm\:pr-1 { + padding-right: 0.25rem; + } + + .sm\:pb-1 { + padding-bottom: 0.25rem; + } + + .sm\:pl-1 { + padding-left: 0.25rem; + } + + .sm\:pt-2 { + padding-top: 0.5rem; + } + + .sm\:pr-2 { + padding-right: 0.5rem; + } + + .sm\:pb-2 { + padding-bottom: 0.5rem; + } + + .sm\:pl-2 { + padding-left: 0.5rem; + } + + .sm\:pt-3 { + padding-top: 0.75rem; + } + + .sm\:pr-3 { + padding-right: 0.75rem; + } + + .sm\:pb-3 { + padding-bottom: 0.75rem; + } + + .sm\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .sm\:pr-0\.5 { + padding-right: 0.125rem; + } + + .sm\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .sm\:pl-0\.5 { + padding-left: 0.125rem; + } + + .sm\:pt-1\.5 { + padding-top: 0.375rem; + } + + .sm\:pr-1\.5 { + padding-right: 0.375rem; + } + + .sm\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .sm\:pl-1\.5 { + padding-left: 0.375rem; + } + + .sm\:pt-2\.5 { + padding-top: 0.625rem; + } + + .sm\:pr-2\.5 { + padding-right: 0.625rem; + } + + .sm\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .sm\:pl-2\.5 { + padding-left: 0.625rem; + } + + .sm\:pt-3\.5 { + padding-top: 0.875rem; + } + + .sm\:pr-3\.5 { + padding-right: 0.875rem; + } + + .sm\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .sm\:pl-3\.5 { + padding-left: 0.875rem; + } + + .sm\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .sm\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .sm\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .sm\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .sm\:placeholder-current::placeholder { + color: currentColor; + } + + .sm\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .sm\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .sm\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .sm\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .sm\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .sm\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .sm\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .sm\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .sm\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .sm\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .sm\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .sm\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .sm\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .sm\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .sm\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .sm\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .sm\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .sm\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .sm\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .sm\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .sm\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .sm\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .sm\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .sm\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .sm\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .sm\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .sm\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .sm\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .sm\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .sm\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .sm\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .sm\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .sm\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .sm\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .sm\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .sm\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .sm\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .sm\:-inset-x-px { + right: -1px; + left: -1px; + } + + .sm\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .sm\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .sm\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .sm\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .sm\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .sm\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .sm\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .sm\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .sm\:-inset-x-full { + right: -100%; + left: -100%; + } + + .sm\:top-0 { + top: 0px; + } + + .sm\:right-0 { + right: 0px; + } + + .sm\:bottom-0 { + bottom: 0px; + } + + .sm\:left-0 { + left: 0px; + } + + .sm\:top-1 { + top: 0.25rem; + } + + .sm\:right-1 { + right: 0.25rem; + } + + .sm\:bottom-1 { + bottom: 0.25rem; + } + + .sm\:left-1 { + left: 0.25rem; + } + + .sm\:top-2 { + top: 0.5rem; + } + + .sm\:right-2 { + right: 0.5rem; + } + + .sm\:bottom-2 { + bottom: 0.5rem; + } + + .sm\:left-2 { + left: 0.5rem; + } + + .sm\:top-3 { + top: 0.75rem; + } + + .sm\:right-3 { + right: 0.75rem; + } + + .sm\:bottom-3 { + bottom: 0.75rem; + } + + .sm\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .sm\:right-14 { + right: 3.5rem; + } + + .sm\:bottom-14 { + bottom: 3.5rem; + } + + .sm\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:right-0\.5 { + right: 0.125rem; + } + + .sm\:bottom-0\.5 { + bottom: 0.125rem; + } + + .sm\:left-0\.5 { + left: 0.125rem; + } + + .sm\:top-1\.5 { + top: 0.375rem; + } + + .sm\:right-1\.5 { + right: 0.375rem; + } + + .sm\:bottom-1\.5 { + bottom: 0.375rem; + } + + .sm\:left-1\.5 { + left: 0.375rem; + } + + .sm\:top-2\.5 { + top: 0.625rem; + } + + .sm\:right-2\.5 { + right: 0.625rem; + } + + .sm\:bottom-2\.5 { + bottom: 0.625rem; + } + + .sm\:left-2\.5 { + left: 0.625rem; + } + + .sm\:top-3\.5 { + top: 0.875rem; + } + + .sm\:right-3\.5 { + right: 0.875rem; + } + + .sm\:bottom-3\.5 { + bottom: 0.875rem; + } + + .sm\:left-3\.5 { + left: 0.875rem; + } + + .sm\:-top-0 { + top: 0px; + } + + .sm\:-right-0 { + right: 0px; + } + + .sm\:-bottom-0 { + bottom: 0px; + } + + .sm\:-left-0 { + left: 0px; + } + + .sm\:-top-1 { + top: -0.25rem; + } + + .sm\:-right-1 { + right: -0.25rem; + } + + .sm\:-bottom-1 { + bottom: -0.25rem; + } + + .sm\:-left-1 { + left: -0.25rem; + } + + .sm\:-top-2 { + top: -0.5rem; + } + + .sm\:-right-2 { + right: -0.5rem; + } + + .sm\:-bottom-2 { + bottom: -0.5rem; + } + + .sm\:-left-2 { + left: -0.5rem; + } + + .sm\:-top-3 { + top: -0.75rem; + } + + .sm\:-right-3 { + right: -0.75rem; + } + + .sm\:-bottom-3 { + bottom: -0.75rem; + } + + .sm\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .sm\:-right-14 { + right: -3.5rem; + } + + .sm\:-bottom-14 { + bottom: -3.5rem; + } + + .sm\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .sm\:-right-px { + right: -1px; + } + + .sm\:-bottom-px { + bottom: -1px; + } + + .sm\:-left-px { + left: -1px; + } + + .sm\:-top-0\.5 { + top: -0.125rem; + } + + .sm\:-right-0\.5 { + right: -0.125rem; + } + + .sm\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .sm\:-left-0\.5 { + left: -0.125rem; + } + + .sm\:-top-1\.5 { + top: -0.375rem; + } + + .sm\:-right-1\.5 { + right: -0.375rem; + } + + .sm\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .sm\:-left-1\.5 { + left: -0.375rem; + } + + .sm\:-top-2\.5 { + top: -0.625rem; + } + + .sm\:-right-2\.5 { + right: -0.625rem; + } + + .sm\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .sm\:-left-2\.5 { + left: -0.625rem; + } + + .sm\:-top-3\.5 { + top: -0.875rem; + } + + .sm\:-right-3\.5 { + right: -0.875rem; + } + + .sm\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .sm\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .sm\:right-full { + right: 100%; + } + + .sm\:bottom-full { + bottom: 100%; + } + + .sm\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .sm\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .sm\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:ring-inset { + --tw-ring-inset: inset; + } + + .sm\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .sm\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .sm\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .sm\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .sm\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .sm\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .sm\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .sm\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .sm\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .sm\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .sm\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .sm\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .sm\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .sm\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .sm\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .sm\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .sm\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .sm\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .sm\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .sm\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .sm\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .sm\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .sm\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .sm\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .sm\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .sm\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .sm\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .sm\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .sm\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .sm\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .sm\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .sm\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .sm\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .sm\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .sm\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .sm\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .sm\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .sm\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .sm\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .sm\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .sm\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .sm\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .sm\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .sm\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .sm\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .sm\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .sm\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .sm\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .sm\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .sm\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .sm\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .sm\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .sm\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .sm\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .sm\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .sm\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .sm\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .sm\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .sm\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .sm\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .sm\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .sm\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .sm\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .sm\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .sm\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .sm\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .sm\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .sm\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .sm\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .sm\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .sm\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .sm\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .sm\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .sm\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .sm\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .sm\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .sm\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .sm\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .sm\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .sm\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .sm\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .sm\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .sm\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .sm\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .sm\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .sm\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .sm\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .sm\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .sm\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .sm\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .sm\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .sm\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .sm\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .sm\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .sm\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .sm\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .sm\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .sm\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .sm\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .sm\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .sm\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .sm\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .sm\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .sm\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .sm\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .sm\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .sm\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .sm\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .sm\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .sm\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .sm\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .sm\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .sm\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .sm\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .sm\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .sm\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .sm\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .sm\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .sm\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .sm\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .sm\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .sm\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .sm\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .sm\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .sm\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .sm\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .sm\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .sm\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .sm\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .sm\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .sm\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .sm\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .sm\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .sm\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .sm\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .sm\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .sm\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .sm\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .sm\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .sm\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .sm\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .sm\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .sm\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .sm\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .sm\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .sm\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .sm\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .sm\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .sm\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .sm\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .sm\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .sm\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .sm\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .sm\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .sm\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .sm\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .sm\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .sm\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .sm\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .sm\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .sm\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .sm\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .sm\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .sm\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .sm\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .sm\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .sm\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .sm\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .sm\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .sm\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .sm\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .sm\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .sm\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .sm\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .sm\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .sm\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .sm\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .sm\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .sm\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .sm\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .sm\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .sm\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .sm\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .sm\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .sm\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .sm\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .sm\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .sm\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .sm\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .sm\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .sm\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .sm\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .sm\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .sm\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .sm\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .sm\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .sm\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .sm\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .sm\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .sm\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .sm\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .sm\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .sm\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .sm\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .sm\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .sm\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .sm\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .sm\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .sm\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .sm\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .sm\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .sm\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .sm\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .sm\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .sm\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .sm\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .sm\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .sm\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .sm\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .sm\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .sm\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .sm\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .sm\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .sm\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .sm\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .sm\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .sm\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .sm\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .sm\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .sm\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .sm\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .sm\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .sm\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .sm\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .sm\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .sm\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .sm\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .sm\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .sm\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .sm\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .sm\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .sm\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .sm\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .sm\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .sm\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .sm\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .sm\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .sm\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .sm\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .sm\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .sm\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .sm\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .sm\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .sm\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .sm\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .sm\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .sm\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .sm\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .sm\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .sm\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .sm\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .sm\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .sm\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .sm\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .sm\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .sm\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .sm\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .sm\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .sm\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .sm\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .sm\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .sm\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .sm\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .sm\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .sm\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .sm\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .sm\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .sm\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .sm\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .sm\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .sm\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .sm\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .sm\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .sm\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .sm\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .sm\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .sm\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .sm\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .sm\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .sm\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .sm\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .sm\:ring-current { + --tw-ring-color: currentColor; + } + + .sm\:ring-transparent { + --tw-ring-color: transparent; + } + + .sm\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .sm\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .sm\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .sm\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .sm\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .sm\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .sm\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .sm\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .sm\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .sm\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .sm\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .sm\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .sm\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .sm\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .sm\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .sm\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .sm\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .sm\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .sm\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .sm\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .sm\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .sm\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .sm\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .sm\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .sm\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .sm\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .sm\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .sm\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .sm\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .sm\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .sm\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .sm\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .sm\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .sm\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .sm\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .sm\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .sm\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .sm\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .sm\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .sm\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .sm\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .sm\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .sm\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .sm\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .sm\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .sm\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .sm\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .sm\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .sm\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .sm\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .sm\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .sm\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .sm\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .sm\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .sm\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .sm\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .sm\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .sm\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .sm\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .sm\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .sm\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .sm\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .sm\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .sm\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .sm\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .sm\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .sm\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .sm\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .sm\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .sm\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .sm\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .sm\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .sm\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .sm\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .sm\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .sm\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .sm\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .sm\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .sm\:text-transparent { + color: transparent; + } + + .sm\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .sm\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .sm\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .sm\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .sm\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .sm\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:hover\:text-current:hover { + color: currentColor; + } + + .sm\:hover\:text-transparent:hover { + color: transparent; + } + + .sm\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus\:text-current:focus { + color: currentColor; + } + + .sm\:focus\:text-transparent:focus { + color: transparent; + } + + .sm\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .sm\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .sm\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .sm\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .sm\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .sm\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .sm\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .sm\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .sm\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .sm\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .sm\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .sm\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .sm\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .sm\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .sm\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .sm\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .sm\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .sm\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .sm\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .sm\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .sm\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .sm\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .sm\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .sm\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .sm\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .sm\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .sm\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .sm\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .sm\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .sm\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .sm\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .sm\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .sm\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .sm\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .sm\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .sm\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .sm\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .sm\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .sm\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .sm\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .sm\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .sm\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .sm\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .sm\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .sm\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .sm\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .sm\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .sm\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .sm\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .sm\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .sm\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .sm\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .sm\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .sm\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .sm\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .sm\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .sm\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .sm\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .sm\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .sm\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .sm\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .sm\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .sm\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .sm\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .sm\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .sm\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .sm\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .sm\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .sm\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .sm\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .sm\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .sm\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .sm\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .sm\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .sm\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .sm\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .sm\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .sm\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .sm\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .sm\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .sm\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .sm\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .sm\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .sm\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .sm\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .sm\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .sm\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .sm\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .sm\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .sm\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .sm\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .sm\:focus-within\:no-underline:focus-within { + 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\:ordinal, .sm\:slashed-zero, .sm\:lining-nums, .sm\:oldstyle-nums, .sm\:proportional-nums, .sm\:tabular-nums, .sm\:diagonal-fractions, .sm\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .sm\:normal-nums { + font-variant-numeric: normal; + } + + .sm\:ordinal { + --tw-ordinal: ordinal; + } + + .sm\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .sm\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .sm\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .sm\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .sm\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .sm\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .sm\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .sm\:tracking-tighter { + letter-spacing: -0.02em; + } + + .sm\:tracking-tight { + letter-spacing: -1px; + } + + .sm\:tracking-normal { + letter-spacing: 0em; + } + + .sm\:tracking-wide { + letter-spacing: 0.03em; + } + + .sm\:tracking-wider { + letter-spacing: 0.08em; + } + + .sm\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .sm\:w-1 { + width: 0.25rem; + } + + .sm\:w-2 { + width: 0.5rem; + } + + .sm\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .sm\:w-1\.5 { + width: 0.375rem; + } + + .sm\:w-2\.5 { + width: 0.625rem; + } + + .sm\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .sm\:gap-1 { + gap: 0.25rem; + } + + .sm\:gap-2 { + gap: 0.5rem; + } + + .sm\:gap-3 { + gap: 0.75rem; + } + + .sm\:gap-4 { + gap: 1rem; + } + + .sm\:gap-5 { + gap: 1.25rem; + } + + .sm\:gap-6 { + gap: 1.5rem; + } + + .sm\:gap-7 { + gap: 1.75rem; + } + + .sm\:gap-8 { + gap: 2rem; + } + + .sm\:gap-9 { + gap: 2.25rem; + } + + .sm\:gap-10 { + gap: 2.5rem; + } + + .sm\:gap-11 { + gap: 2.75rem; + } + + .sm\:gap-12 { + gap: 3rem; + } + + .sm\:gap-14 { + gap: 3.5rem; + } + + .sm\:gap-16 { + gap: 4rem; + } + + .sm\:gap-20 { + gap: 5rem; + } + + .sm\:gap-24 { + gap: 6rem; + } + + .sm\:gap-28 { + gap: 7rem; + } + + .sm\:gap-32 { + gap: 8rem; + } + + .sm\:gap-36 { + gap: 9rem; + } + + .sm\:gap-40 { + gap: 10rem; + } + + .sm\:gap-44 { + gap: 11rem; + } + + .sm\:gap-48 { + gap: 12rem; + } + + .sm\:gap-52 { + gap: 13rem; + } + + .sm\:gap-56 { + gap: 14rem; + } + + .sm\:gap-60 { + gap: 15rem; + } + + .sm\:gap-64 { + gap: 16rem; + } + + .sm\:gap-72 { + gap: 18rem; + } + + .sm\:gap-80 { + gap: 20rem; + } + + .sm\:gap-96 { + gap: 24rem; + } + + .sm\:gap-px { + gap: 1px; + } + + .sm\:gap-0\.5 { + gap: 0.125rem; + } + + .sm\:gap-1\.5 { + gap: 0.375rem; + } + + .sm\:gap-2\.5 { + gap: 0.625rem; + } + + .sm\:gap-3\.5 { + gap: 0.875rem; + } + + .sm\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .sm\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .sm\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .sm\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .sm\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .sm\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .sm\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .sm\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .sm\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .sm\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .sm\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .sm\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .sm\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .sm\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .sm\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .sm\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .sm\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .sm\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .sm\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .sm\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .sm\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .sm\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .sm\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .sm\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .sm\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .sm\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .sm\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .sm\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .sm\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .sm\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .sm\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .sm\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .sm\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .sm\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .sm\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .sm\:gap-y-0 { + row-gap: 0px; + } + + .sm\:gap-y-1 { + row-gap: 0.25rem; + } + + .sm\:gap-y-2 { + row-gap: 0.5rem; + } + + .sm\:gap-y-3 { + row-gap: 0.75rem; + } + + .sm\:gap-y-4 { + row-gap: 1rem; + } + + .sm\:gap-y-5 { + row-gap: 1.25rem; + } + + .sm\:gap-y-6 { + row-gap: 1.5rem; + } + + .sm\:gap-y-7 { + row-gap: 1.75rem; + } + + .sm\:gap-y-8 { + row-gap: 2rem; + } + + .sm\:gap-y-9 { + row-gap: 2.25rem; + } + + .sm\:gap-y-10 { + row-gap: 2.5rem; + } + + .sm\:gap-y-11 { + row-gap: 2.75rem; + } + + .sm\:gap-y-12 { + row-gap: 3rem; + } + + .sm\:gap-y-14 { + row-gap: 3.5rem; + } + + .sm\:gap-y-16 { + row-gap: 4rem; + } + + .sm\:gap-y-20 { + row-gap: 5rem; + } + + .sm\:gap-y-24 { + row-gap: 6rem; + } + + .sm\:gap-y-28 { + row-gap: 7rem; + } + + .sm\:gap-y-32 { + row-gap: 8rem; + } + + .sm\:gap-y-36 { + row-gap: 9rem; + } + + .sm\:gap-y-40 { + row-gap: 10rem; + } + + .sm\:gap-y-44 { + row-gap: 11rem; + } + + .sm\:gap-y-48 { + row-gap: 12rem; + } + + .sm\:gap-y-52 { + row-gap: 13rem; + } + + .sm\:gap-y-56 { + row-gap: 14rem; + } + + .sm\:gap-y-60 { + row-gap: 15rem; + } + + .sm\:gap-y-64 { + row-gap: 16rem; + } + + .sm\:gap-y-72 { + row-gap: 18rem; + } + + .sm\:gap-y-80 { + row-gap: 20rem; + } + + .sm\:gap-y-96 { + row-gap: 24rem; + } + + .sm\:gap-y-px { + row-gap: 1px; + } + + .sm\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .sm\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .sm\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .sm\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .sm\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .sm\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .sm\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .sm\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .sm\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .sm\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .sm\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:scale-x-0 { + --tw-scale-x: 0; + } + + .sm\:scale-x-50 { + --tw-scale-x: .5; + } + + .sm\:scale-x-75 { + --tw-scale-x: .75; + } + + .sm\:scale-x-90 { + --tw-scale-x: .9; + } + + .sm\:scale-x-95 { + --tw-scale-x: .95; + } + + .sm\:scale-x-100 { + --tw-scale-x: 1; + } + + .sm\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .sm\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .sm\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .sm\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .sm\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .sm\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .sm\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .sm\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .sm\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .sm\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .sm\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .sm\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .sm\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .sm\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .sm\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .sm\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .sm\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .sm\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .sm\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .sm\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .sm\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .sm\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .sm\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .sm\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .sm\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .sm\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .sm\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .sm\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .sm\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .sm\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .sm\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .sm\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .sm\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .sm\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .sm\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .sm\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .sm\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .sm\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .sm\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .sm\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .sm\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .sm\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .sm\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .sm\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .sm\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .sm\:rotate-0 { + --tw-rotate: 0deg; + } + + .sm\:rotate-1 { + --tw-rotate: 1deg; + } + + .sm\:rotate-2 { + --tw-rotate: 2deg; + } + + .sm\:rotate-3 { + --tw-rotate: 3deg; + } + + .sm\:rotate-6 { + --tw-rotate: 6deg; + } + + .sm\:rotate-12 { + --tw-rotate: 12deg; + } + + .sm\:rotate-45 { + --tw-rotate: 45deg; + } + + .sm\:rotate-90 { + --tw-rotate: 90deg; + } + + .sm\:rotate-180 { + --tw-rotate: 180deg; + } + + .sm\:-rotate-180 { + --tw-rotate: -180deg; + } + + .sm\:-rotate-90 { + --tw-rotate: -90deg; + } + + .sm\:-rotate-45 { + --tw-rotate: -45deg; + } + + .sm\:-rotate-12 { + --tw-rotate: -12deg; + } + + .sm\:-rotate-6 { + --tw-rotate: -6deg; + } + + .sm\:-rotate-3 { + --tw-rotate: -3deg; + } + + .sm\:-rotate-2 { + --tw-rotate: -2deg; + } + + .sm\:-rotate-1 { + --tw-rotate: -1deg; + } + + .sm\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .sm\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .sm\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .sm\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .sm\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .sm\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .sm\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .sm\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .sm\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .sm\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .sm\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .sm\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .sm\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .sm\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .sm\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .sm\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .sm\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .sm\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .sm\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .sm\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .sm\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .sm\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .sm\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .sm\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .sm\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .sm\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .sm\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .sm\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .sm\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .sm\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .sm\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .sm\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .sm\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .sm\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .sm\:translate-x-0 { + --tw-translate-x: 0px; + } + + .sm\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .sm\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .sm\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .sm\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .sm\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .sm\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .sm\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .sm\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .sm\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .sm\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .sm\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .sm\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .sm\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .sm\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .sm\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .sm\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .sm\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .sm\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .sm\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .sm\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .sm\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .sm\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .sm\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .sm\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .sm\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .sm\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .sm\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .sm\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .sm\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .sm\:translate-x-px { + --tw-translate-x: 1px; + } + + .sm\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .sm\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .sm\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .sm\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .sm\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .sm\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .sm\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .sm\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .sm\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .sm\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .sm\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .sm\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .sm\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .sm\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .sm\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .sm\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .sm\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .sm\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .sm\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .sm\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .sm\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .sm\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .sm\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .sm\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .sm\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .sm\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .sm\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .sm\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .sm\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .sm\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .sm\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .sm\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .sm\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .sm\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .sm\:-translate-x-px { + --tw-translate-x: -1px; + } + + .sm\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .sm\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .sm\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .sm\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .sm\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .sm\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .sm\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .sm\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .sm\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .sm\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .sm\:translate-x-full { + --tw-translate-x: 100%; + } + + .sm\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .sm\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .sm\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .sm\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .sm\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .sm\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .sm\:-translate-x-full { + --tw-translate-x: -100%; + } + + .sm\:translate-y-0 { + --tw-translate-y: 0px; + } + + .sm\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .sm\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .sm\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .sm\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .sm\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .sm\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .sm\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .sm\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .sm\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .sm\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .sm\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .sm\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .sm\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .sm\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .sm\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .sm\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .sm\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .sm\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .sm\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .sm\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .sm\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .sm\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .sm\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .sm\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .sm\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .sm\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .sm\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .sm\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .sm\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .sm\:translate-y-px { + --tw-translate-y: 1px; + } + + .sm\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .sm\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .sm\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .sm\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .sm\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .sm\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .sm\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .sm\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .sm\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .sm\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .sm\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .sm\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .sm\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .sm\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .sm\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .sm\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .sm\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .sm\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .sm\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .sm\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .sm\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .sm\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .sm\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .sm\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .sm\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .sm\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .sm\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .sm\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .sm\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .sm\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .sm\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .sm\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .sm\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .sm\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .sm\:-translate-y-px { + --tw-translate-y: -1px; + } + + .sm\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .sm\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .sm\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .sm\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .sm\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .sm\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .sm\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .sm\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .sm\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .sm\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .sm\:translate-y-full { + --tw-translate-y: 100%; + } + + .sm\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .sm\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .sm\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .sm\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .sm\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .sm\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .sm\:-translate-y-full { + --tw-translate-y: -100%; + } + + .sm\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .sm\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .sm\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .sm\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .sm\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .sm\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .sm\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .sm\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .sm\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .sm\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .sm\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .sm\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .sm\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .sm\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .sm\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .sm\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .sm\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .sm\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .sm\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .sm\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .sm\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .sm\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .sm\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .sm\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .sm\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .sm\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .sm\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .sm\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .sm\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .sm\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .sm\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .sm\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .sm\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .sm\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .sm\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .sm\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .sm\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .sm\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .sm\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .sm\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .sm\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .sm\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .sm\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .sm\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .sm\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .sm\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .sm\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .sm\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .sm\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .sm\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .sm\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .sm\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .sm\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .sm\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .sm\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .sm\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .sm\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .sm\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .sm\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .sm\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .sm\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .sm\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .sm\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .sm\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .sm\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .sm\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .sm\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .sm\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .sm\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .sm\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .sm\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .sm\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .sm\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .sm\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .sm\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .sm\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .sm\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .sm\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .sm\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .sm\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .sm\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .sm\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .sm\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .sm\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .sm\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .sm\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .sm\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .sm\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .sm\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .sm\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .sm\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .sm\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .sm\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .sm\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .sm\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .sm\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .sm\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .sm\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .sm\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .sm\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .sm\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .sm\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .sm\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .sm\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .sm\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .sm\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .sm\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .sm\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .sm\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .sm\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .sm\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .sm\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .sm\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .sm\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .sm\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .sm\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .sm\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .sm\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .sm\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .sm\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .sm\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .sm\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .sm\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .sm\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .sm\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .sm\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .sm\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .sm\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .sm\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .sm\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .sm\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .sm\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .sm\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .sm\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .sm\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .sm\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .sm\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .sm\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .sm\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .sm\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .sm\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .sm\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .sm\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .sm\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .sm\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .sm\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .sm\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .sm\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .sm\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .sm\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .sm\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .sm\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .sm\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .sm\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .sm\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .sm\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .sm\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .sm\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .sm\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .sm\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .sm\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .sm\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .sm\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .sm\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .sm\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .sm\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .sm\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .sm\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .sm\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .sm\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .sm\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .sm\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .sm\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .sm\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .sm\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .sm\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .sm\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .sm\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .sm\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .sm\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .sm\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .sm\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .sm\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .sm\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .sm\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .sm\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .sm\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .sm\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .sm\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .sm\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .sm\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .sm\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .sm\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .sm\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .sm\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .sm\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .sm\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .sm\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .sm\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .sm\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .sm\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .sm\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .sm\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .sm\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .sm\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .sm\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .sm\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .sm\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .sm\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .sm\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .sm\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .sm\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .sm\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .sm\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .sm\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .sm\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .sm\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .sm\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .sm\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .sm\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .sm\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .sm\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .sm\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .sm\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .sm\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .sm\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .sm\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .sm\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .sm\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .sm\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .sm\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .sm\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .sm\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .sm\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .sm\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .sm\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .sm\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .sm\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .sm\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .sm\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .sm\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .sm\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .sm\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .sm\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .sm\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .sm\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .sm\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .sm\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .sm\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .sm\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .sm\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .sm\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .sm\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .sm\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .sm\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .sm\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .sm\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .sm\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .sm\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .sm\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .sm\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .sm\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .sm\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .sm\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .sm\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .sm\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .sm\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .sm\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .sm\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .sm\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .sm\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .sm\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .sm\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .sm\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .sm\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .sm\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .sm\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .sm\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .sm\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .sm\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .sm\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .sm\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .sm\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .sm\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .sm\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .sm\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .sm\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .sm\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .sm\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .sm\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .sm\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .sm\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .sm\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .sm\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .sm\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .sm\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .sm\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .sm\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .sm\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .sm\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .sm\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .sm\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .sm\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .sm\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .sm\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .sm\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .sm\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .sm\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .sm\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .sm\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .sm\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .sm\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .sm\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .sm\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .sm\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .sm\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .sm\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .sm\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .sm\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .sm\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .sm\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .sm\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .sm\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .sm\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .sm\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .sm\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .sm\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .sm\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .sm\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .sm\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .sm\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .sm\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .sm\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .sm\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .sm\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .sm\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .sm\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .sm\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .sm\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .sm\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .sm\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .sm\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .sm\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .sm\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .sm\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .sm\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .sm\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .sm\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .sm\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .sm\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .sm\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .sm\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .sm\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .sm\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .sm\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .sm\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .sm\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .sm\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .sm\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .sm\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .sm\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .sm\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .sm\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .sm\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .sm\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .sm\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .sm\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .sm\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .sm\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .sm\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .sm\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .sm\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .sm\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .sm\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .sm\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .sm\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .sm\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .sm\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .sm\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .sm\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .sm\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .sm\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .sm\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .sm\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .sm\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .sm\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .sm\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .sm\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .sm\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .sm\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .sm\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .sm\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .sm\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .sm\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .sm\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .sm\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .sm\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .sm\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .sm\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .sm\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .sm\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .sm\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .sm\:transition-none { + transition-property: none; + } + + .sm\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .sm\:ease-linear { + transition-timing-function: linear; + } + + .sm\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .sm\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .sm\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .sm\:duration-75 { + transition-duration: 75ms; + } + + .sm\:duration-100 { + transition-duration: 100ms; + } + + .sm\:duration-150 { + transition-duration: 150ms; + } + + .sm\:duration-200 { + transition-duration: 200ms; + } + + .sm\:duration-300 { + transition-duration: 300ms; + } + + .sm\:duration-500 { + transition-duration: 500ms; + } + + .sm\:duration-700 { + transition-duration: 700ms; + } + + .sm\:duration-1000 { + transition-duration: 1000ms; + } + + .sm\:delay-75 { + transition-delay: 75ms; + } + + .sm\:delay-100 { + transition-delay: 100ms; + } + + .sm\:delay-150 { + transition-delay: 150ms; + } + + .sm\:delay-200 { + transition-delay: 200ms; + } + + .sm\:delay-300 { + transition-delay: 300ms; + } + + .sm\:delay-500 { + transition-delay: 500ms; + } + + .sm\:delay-700 { + transition-delay: 700ms; + } + + .sm\:delay-1000 { + transition-delay: 1000ms; + } + + .sm\:animate-none { + -webkit-animation: none; + animation: none; + } + + .sm\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .sm\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .sm\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .sm\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@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; + } + } + + @media (min-width: 1536px) { + .md\:container { + max-width: 1536px; + } + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .md\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .md\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .md\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .md\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .md\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .md\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .md\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .md\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .md\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .md\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .md\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .md\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .md\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .md\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .md\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .md\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .md\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .md\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .md\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .md\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .md\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .md\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .md\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .md\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .md\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .md\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .md\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .md\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .md\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .md\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .md\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .md\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .md\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .md\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .md\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .md\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .md\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .md\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .md\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .md\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .md\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .md\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .md\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .md\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .md\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .md\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .md\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .md\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .md\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .md\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .md\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .md\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .md\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .md\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .md\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .md\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .md\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .md\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .md\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .md\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .md\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .md\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .md\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .md\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .md\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .md\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .md\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .md\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .md\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .md\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .md\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .md\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .md\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .md\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .md\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .md\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .md\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .md\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .md\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .md\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .md\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .md\:bg-clip-padding { + background-clip: padding-box; + } + + .md\:bg-clip-content { + background-clip: content-box; + } + + .md\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .md\:bg-current { + background-color: currentColor; + } + + .md\:bg-transparent { + background-color: transparent; + } + + .md\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .md\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .md\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .md\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .md\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .md\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-current:hover { + background-color: currentColor; + } + + .md\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .md\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-current:focus { + background-color: currentColor; + } + + .md\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .md\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .md\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .md\:bg-none { + background-image: none; + } + + .md\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .md\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .md\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:to-current { + --tw-gradient-to: currentColor; + } + + .md\:to-transparent { + --tw-gradient-to: transparent; + } + + .md\:to-black { + --tw-gradient-to: #000; + } + + .md\:to-white { + --tw-gradient-to: #fff; + } + + .md\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .md\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .md\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .md\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .md\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .md\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .md\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .md\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .md\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .md\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .md\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .md\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .md\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .md\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .md\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .md\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .md\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .md\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .md\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .md\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .md\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .md\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .md\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .md\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .md\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .md\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .md\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .md\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .md\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .md\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .md\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .md\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .md\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .md\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .md\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .md\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .md\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .md\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .md\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .md\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .md\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .md\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .md\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .md\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .md\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .md\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .md\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .md\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .md\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .md\:to-green-900 { + --tw-gradient-to: #156633; + } + + .md\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .md\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .md\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .md\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .md\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .md\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .md\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .md\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .md\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .md\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .md\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .md\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .md\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .md\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .md\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .md\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .md\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .md\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .md\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .md\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .md\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .md\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .md\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .md\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .md\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .md\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .md\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .md\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .md\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .md\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .md\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .md\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .md\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .md\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .md\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .md\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .md\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .md\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .md\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .md\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .md\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .md\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .md\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .md\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .md\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .md\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .md\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .md\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .md\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .md\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .md\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .md\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .md\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .md\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .md\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .md\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .md\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .md\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .md\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .md\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .md\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .md\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .md\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .md\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .md\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .md\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .md\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .md\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .md\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .md\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .md\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .md\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .md\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .md\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .md\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .md\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .md\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .md\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .md\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .md\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .md\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .md\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .md\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .md\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .md\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .md\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .md\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .md\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .md\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .md\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .md\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .md\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .md\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .md\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .md\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .md\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .md\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .md\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .md\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .md\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .md\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .md\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .md\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .md\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .md\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .md\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .md\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .md\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .md\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .md\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .md\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .md\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .md\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .md\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .md\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .md\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .md\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .md\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .md\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .md\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .md\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .md\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .md\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .md\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .md\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .md\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .md\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .md\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .md\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .md\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .md\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .md\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .md\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .md\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .md\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .md\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .md\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .md\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .md\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .md\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .md\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .md\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .md\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .md\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .md\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .md\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .md\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .md\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .md\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .md\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .md\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .md\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .md\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .md\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .md\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .md\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .md\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .md\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .md\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .md\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .md\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .md\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .md\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .md\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .md\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .md\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .md\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .md\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .md\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .md\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .md\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .md\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .md\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .md\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .md\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .md\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .md\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .md\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .md\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .md\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .md\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .md\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .md\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .md\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .md\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .md\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .md\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .md\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .md\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .md\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .md\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .md\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .md\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .md\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .md\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .md\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .md\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .md\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .md\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .md\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .md\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .md\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .md\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .md\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .md\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .md\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .md\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .md\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .md\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .md\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .md\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .md\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .md\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .md\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .md\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .md\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .md\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .md\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .md\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .md\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .md\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .md\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .md\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .md\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .md\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .md\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .md\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .md\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .md\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .md\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .md\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .md\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .md\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .md\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .md\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .md\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .md\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .md\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .md\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .md\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .md\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .md\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .md\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .md\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .md\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .md\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .md\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .md\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .md\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .md\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .md\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .md\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .md\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .md\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .md\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .md\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .md\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .md\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .md\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .md\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .md\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .md\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .md\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .md\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .md\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .md\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .md\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .md\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .md\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .md\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .md\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .md\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .md\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .md\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .md\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .md\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .md\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .md\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .md\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .md\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .md\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .md\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .md\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .md\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .md\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .md\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .md\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .md\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .md\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .md\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .md\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .md\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .md\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .md\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .md\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .md\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .md\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .md\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .md\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .md\:border-transparent { + border-color: transparent; + } + + .md\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .md\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .md\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .md\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .md\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .md\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:hover\:border-current:hover { + border-color: currentColor; + } + + .md\:hover\:border-transparent:hover { + border-color: transparent; + } + + .md\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:focus\:border-current:focus { + border-color: currentColor; + } + + .md\:focus\:border-transparent:focus { + border-color: transparent; + } + + .md\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .md\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .md\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .md\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .md\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .md\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .md\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .md\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .md\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .md\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .md\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .md\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .md\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .md\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .md\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .md\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .md\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .md\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .md\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .md\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .md\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .md\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .md\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .md\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .md\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .md\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .md\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .md\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .md\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .md\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .md\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .md\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .md\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .md\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .md\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .md\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .md\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .md\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .md\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .md\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .md\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .md\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .md\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .md\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .md\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .md\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .md\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .md\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .md\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .md\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .md\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .md\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .md\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .md\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .md\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .md\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .md\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .md\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .md\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .md\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .md\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .md\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .md\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .md\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .md\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .md\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .md\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .md\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .md\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .md\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .md\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .md\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .md\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .md\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .md\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .md\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .md\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .md\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .md\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .md\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .md\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .md\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .md\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .md\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .md\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .md\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .md\:rounded-none { + border-radius: 0; + } + + .md\:rounded-sm { + border-radius: 0.125rem; + } + + .md\:rounded { + border-radius: 0.25rem; + } + + .md\:rounded-md { + border-radius: 0.375rem; + } + + .md\:rounded-lg { + border-radius: 0.5rem; + } + + .md\:rounded-xl { + border-radius: 0.675rem; + } + + .md\:rounded-2xl { + border-radius: 0.75rem; + } + + .md\:rounded-3xl { + border-radius: 0.875rem; + } + + .md\:rounded-4xl { + border-radius: 1rem; + } + + .md\:rounded-5xl { + border-radius: 1.25rem; + } + + .md\:rounded-6xl { + border-radius: 1.375rem; + } + + .md\:rounded-7xl { + border-radius: 1.5rem; + } + + .md\:rounded-8xl { + border-radius: 2rem; + } + + .md\:rounded-9xl { + border-radius: 2.25rem; + } + + .md\:rounded-10xl { + border-radius: 2.5rem; + } + + .md\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .md\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .md\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .md\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .md\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .md\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .md\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .md\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .md\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .md\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .md\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .md\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .md\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .md\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .md\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .md\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .md\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .md\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .md\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .md\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .md\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .md\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .md\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .md\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .md\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .md\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .md\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .md\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .md\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .md\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .md\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .md\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .md\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .md\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .md\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .md\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .md\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .md\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .md\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .md\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .md\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .md\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .md\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .md\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .md\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .md\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .md\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .md\:rounded-l-11xl { + 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: 0.125rem; + } + + .md\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .md\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .md\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .md\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .md\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .md\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .md\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .md\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .md\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .md\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .md\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .md\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .md\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .md\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .md\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .md\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .md\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .md\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .md\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .md\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .md\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .md\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .md\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .md\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .md\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .md\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .md\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .md\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .md\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .md\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .md\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .md\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .md\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .md\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .md\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .md\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .md\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .md\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .md\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .md\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .md\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .md\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .md\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .md\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .md\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .md\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .md\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .md\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .md\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .md\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .md\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .md\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .md\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .md\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .md\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .md\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .md\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .md\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .md\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .md\:place-items-auto { + place-items: auto; + } + + .md\:place-items-start { + place-items: start; + } + + .md\:place-items-end { + place-items: end; + } + + .md\:place-items-center { + place-items: center; + } + + .md\:place-items-stretch { + place-items: stretch; + } + + .md\:place-content-center { + place-content: center; + } + + .md\:place-content-start { + place-content: start; + } + + .md\:place-content-end { + place-content: end; + } + + .md\:place-content-between { + place-content: space-between; + } + + .md\:place-content-around { + place-content: space-around; + } + + .md\:place-content-evenly { + place-content: space-evenly; + } + + .md\:place-content-stretch { + place-content: stretch; + } + + .md\:place-self-auto { + place-self: auto; + } + + .md\:place-self-start { + place-self: start; + } + + .md\:place-self-end { + place-self: end; + } + + .md\:place-self-center { + place-self: center; + } + + .md\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .md\:justify-items-start { + justify-items: start; + } + + .md\:justify-items-end { + justify-items: end; + } + + .md\:justify-items-center { + justify-items: center; + } + + .md\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .md\:justify-self-start { + justify-self: start; + } + + .md\:justify-self-end { + justify-self: end; + } + + .md\:justify-self-center { + justify-self: center; + } + + .md\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .md\:clear-right { + clear: right; + } + + .md\:clear-both { + clear: both; + } + + .md\:clear-none { + clear: none; + } + + .md\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .md\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .md\:h-1 { + height: 0.25rem; + } + + .md\:h-2 { + height: 0.5rem; + } + + .md\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:h-1\.5 { + height: 0.375rem; + } + + .md\:h-2\.5 { + height: 0.625rem; + } + + .md\:h-3\.5 { + height: 0.875rem; + } + + .md\:h-full { + height: 100%; + } + + .md\:h-screen { + height: 100vh; + } + + .md\:text-xxs { + font-size: 0.6875rem; + } + + .md\:text-xs { + font-size: 0.75rem; + } + + .md\:text-sm { + font-size: 0.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: 3.75rem; + } + + .md\:text-7xl { + font-size: 4.5rem; + } + + .md\:text-8xl { + font-size: 6rem; + } + + .md\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .md\:m-1 { + margin: 0.25rem; + } + + .md\:m-2 { + margin: 0.5rem; + } + + .md\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:m-1\.5 { + margin: 0.375rem; + } + + .md\:m-2\.5 { + margin: 0.625rem; + } + + .md\:m-3\.5 { + margin: 0.875rem; + } + + .md\:-m-0 { + margin: 0px; + } + + .md\:-m-1 { + margin: -0.25rem; + } + + .md\:-m-2 { + margin: -0.5rem; + } + + .md\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .md\:-m-1\.5 { + margin: -0.375rem; + } + + .md\:-m-2\.5 { + margin: -0.625rem; + } + + .md\:-m-3\.5 { + margin: -0.875rem; + } + + .md\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .md\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .md\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .md\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .md\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .md\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .md\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .md\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .md\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .md\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .md\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .md\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .md\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .md\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .md\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .md\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .md\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .md\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .md\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .md\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .md\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .md\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .md\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .md\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .md\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .md\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .md\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .md\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .md\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .md\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .md\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .md\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .md\:mt-0 { + margin-top: 0px; + } + + .md\:mr-0 { + margin-right: 0px; + } + + .md\:mb-0 { + margin-bottom: 0px; + } + + .md\:ml-0 { + margin-left: 0px; + } + + .md\:mt-1 { + margin-top: 0.25rem; + } + + .md\:mr-1 { + margin-right: 0.25rem; + } + + .md\:mb-1 { + margin-bottom: 0.25rem; + } + + .md\:ml-1 { + margin-left: 0.25rem; + } + + .md\:mt-2 { + margin-top: 0.5rem; + } + + .md\:mr-2 { + margin-right: 0.5rem; + } + + .md\:mb-2 { + margin-bottom: 0.5rem; + } + + .md\:ml-2 { + margin-left: 0.5rem; + } + + .md\:mt-3 { + margin-top: 0.75rem; + } + + .md\:mr-3 { + margin-right: 0.75rem; + } + + .md\:mb-3 { + margin-bottom: 0.75rem; + } + + .md\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .md\:mr-0\.5 { + margin-right: 0.125rem; + } + + .md\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .md\:ml-0\.5 { + margin-left: 0.125rem; + } + + .md\:mt-1\.5 { + margin-top: 0.375rem; + } + + .md\:mr-1\.5 { + margin-right: 0.375rem; + } + + .md\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .md\:ml-1\.5 { + margin-left: 0.375rem; + } + + .md\:mt-2\.5 { + margin-top: 0.625rem; + } + + .md\:mr-2\.5 { + margin-right: 0.625rem; + } + + .md\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .md\:ml-2\.5 { + margin-left: 0.625rem; + } + + .md\:mt-3\.5 { + margin-top: 0.875rem; + } + + .md\:mr-3\.5 { + margin-right: 0.875rem; + } + + .md\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .md\:ml-3\.5 { + margin-left: 0.875rem; + } + + .md\:-mt-0 { + margin-top: 0px; + } + + .md\:-mr-0 { + margin-right: 0px; + } + + .md\:-mb-0 { + margin-bottom: 0px; + } + + .md\:-ml-0 { + margin-left: 0px; + } + + .md\:-mt-1 { + margin-top: -0.25rem; + } + + .md\:-mr-1 { + margin-right: -0.25rem; + } + + .md\:-mb-1 { + margin-bottom: -0.25rem; + } + + .md\:-ml-1 { + margin-left: -0.25rem; + } + + .md\:-mt-2 { + margin-top: -0.5rem; + } + + .md\:-mr-2 { + margin-right: -0.5rem; + } + + .md\:-mb-2 { + margin-bottom: -0.5rem; + } + + .md\:-ml-2 { + margin-left: -0.5rem; + } + + .md\:-mt-3 { + margin-top: -0.75rem; + } + + .md\:-mr-3 { + margin-right: -0.75rem; + } + + .md\:-mb-3 { + margin-bottom: -0.75rem; + } + + .md\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .md\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .md\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .md\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .md\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .md\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .md\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .md\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .md\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .md\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .md\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .md\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .md\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .md\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .md\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .md\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .md\:max-h-full { + max-height: 100%; + } + + .md\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .md\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .md\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .md\:opacity-10 { + opacity: 0.1; + } + + .md\:opacity-20 { + opacity: 0.2; + } + + .md\:opacity-25 { + opacity: 0.25; + } + + .md\:opacity-30 { + opacity: 0.3; + } + + .md\:opacity-40 { + opacity: 0.4; + } + + .md\:opacity-50 { + opacity: 0.5; + } + + .md\:opacity-60 { + opacity: 0.6; + } + + .md\:opacity-70 { + opacity: 0.7; + } + + .md\:opacity-75 { + opacity: 0.75; + } + + .md\:opacity-80 { + opacity: 0.8; + } + + .md\:opacity-90 { + opacity: 0.9; + } + + .md\:opacity-95 { + opacity: 0.95; + } + + .md\:opacity-100 { + opacity: 1; + } + + .group:hover .md\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .md\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .md\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .md\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .md\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .md\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .md\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .md\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .md\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .md\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .md\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .md\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .md\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .md\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .md\:group-hover\:opacity-100 { + opacity: 1; + } + + .md\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .md\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .md\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .md\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .md\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .md\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .md\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .md\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .md\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .md\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .md\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .md\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .md\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .md\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .md\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .md\:hover\:opacity-0:hover { + opacity: 0; + } + + .md\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .md\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .md\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .md\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .md\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .md\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .md\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .md\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .md\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .md\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .md\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .md\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .md\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .md\:hover\:opacity-100:hover { + opacity: 1; + } + + .md\:focus\:opacity-0:focus { + opacity: 0; + } + + .md\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .md\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .md\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .md\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .md\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .md\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .md\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .md\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .md\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .md\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .md\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .md\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .md\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .md\:focus\:opacity-100:focus { + opacity: 1; + } + + .md\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .md\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .md\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .md\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .md\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .md\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .md\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .md\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .md\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .md\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .md\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .md\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .md\:p-0 { + padding: 0px; + } + + .md\:p-1 { + padding: 0.25rem; + } + + .md\:p-2 { + padding: 0.5rem; + } + + .md\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:p-1\.5 { + padding: 0.375rem; + } + + .md\:p-2\.5 { + padding: 0.625rem; + } + + .md\:p-3\.5 { + padding: 0.875rem; + } + + .md\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .md\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .md\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .md\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .md\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .md\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .md\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .md\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .md\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .md\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .md\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .md\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .md\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .md\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .md\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .md\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .md\:pt-0 { + padding-top: 0px; + } + + .md\:pr-0 { + padding-right: 0px; + } + + .md\:pb-0 { + padding-bottom: 0px; + } + + .md\:pl-0 { + padding-left: 0px; + } + + .md\:pt-1 { + padding-top: 0.25rem; + } + + .md\:pr-1 { + padding-right: 0.25rem; + } + + .md\:pb-1 { + padding-bottom: 0.25rem; + } + + .md\:pl-1 { + padding-left: 0.25rem; + } + + .md\:pt-2 { + padding-top: 0.5rem; + } + + .md\:pr-2 { + padding-right: 0.5rem; + } + + .md\:pb-2 { + padding-bottom: 0.5rem; + } + + .md\:pl-2 { + padding-left: 0.5rem; + } + + .md\:pt-3 { + padding-top: 0.75rem; + } + + .md\:pr-3 { + padding-right: 0.75rem; + } + + .md\:pb-3 { + padding-bottom: 0.75rem; + } + + .md\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .md\:pr-0\.5 { + padding-right: 0.125rem; + } + + .md\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .md\:pl-0\.5 { + padding-left: 0.125rem; + } + + .md\:pt-1\.5 { + padding-top: 0.375rem; + } + + .md\:pr-1\.5 { + padding-right: 0.375rem; + } + + .md\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .md\:pl-1\.5 { + padding-left: 0.375rem; + } + + .md\:pt-2\.5 { + padding-top: 0.625rem; + } + + .md\:pr-2\.5 { + padding-right: 0.625rem; + } + + .md\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .md\:pl-2\.5 { + padding-left: 0.625rem; + } + + .md\:pt-3\.5 { + padding-top: 0.875rem; + } + + .md\:pr-3\.5 { + padding-right: 0.875rem; + } + + .md\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .md\:pl-3\.5 { + padding-left: 0.875rem; + } + + .md\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .md\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .md\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .md\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .md\:placeholder-current::placeholder { + color: currentColor; + } + + .md\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .md\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .md\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .md\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .md\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .md\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .md\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .md\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .md\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .md\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .md\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .md\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .md\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .md\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .md\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .md\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .md\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .md\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .md\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .md\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .md\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .md\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .md\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .md\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .md\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .md\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .md\:inset-x-0 { + right: 0px; + left: 0px; + } + + .md\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .md\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .md\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .md\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .md\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .md\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .md\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .md\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .md\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .md\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .md\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .md\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .md\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .md\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .md\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .md\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .md\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .md\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .md\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .md\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .md\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .md\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .md\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .md\:-inset-x-px { + right: -1px; + left: -1px; + } + + .md\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .md\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .md\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .md\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .md\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .md\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .md\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .md\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .md\:-inset-x-full { + right: -100%; + left: -100%; + } + + .md\:top-0 { + top: 0px; + } + + .md\:right-0 { + right: 0px; + } + + .md\:bottom-0 { + bottom: 0px; + } + + .md\:left-0 { + left: 0px; + } + + .md\:top-1 { + top: 0.25rem; + } + + .md\:right-1 { + right: 0.25rem; + } + + .md\:bottom-1 { + bottom: 0.25rem; + } + + .md\:left-1 { + left: 0.25rem; + } + + .md\:top-2 { + top: 0.5rem; + } + + .md\:right-2 { + right: 0.5rem; + } + + .md\:bottom-2 { + bottom: 0.5rem; + } + + .md\:left-2 { + left: 0.5rem; + } + + .md\:top-3 { + top: 0.75rem; + } + + .md\:right-3 { + right: 0.75rem; + } + + .md\:bottom-3 { + bottom: 0.75rem; + } + + .md\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .md\:right-14 { + right: 3.5rem; + } + + .md\:bottom-14 { + bottom: 3.5rem; + } + + .md\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:right-0\.5 { + right: 0.125rem; + } + + .md\:bottom-0\.5 { + bottom: 0.125rem; + } + + .md\:left-0\.5 { + left: 0.125rem; + } + + .md\:top-1\.5 { + top: 0.375rem; + } + + .md\:right-1\.5 { + right: 0.375rem; + } + + .md\:bottom-1\.5 { + bottom: 0.375rem; + } + + .md\:left-1\.5 { + left: 0.375rem; + } + + .md\:top-2\.5 { + top: 0.625rem; + } + + .md\:right-2\.5 { + right: 0.625rem; + } + + .md\:bottom-2\.5 { + bottom: 0.625rem; + } + + .md\:left-2\.5 { + left: 0.625rem; + } + + .md\:top-3\.5 { + top: 0.875rem; + } + + .md\:right-3\.5 { + right: 0.875rem; + } + + .md\:bottom-3\.5 { + bottom: 0.875rem; + } + + .md\:left-3\.5 { + left: 0.875rem; + } + + .md\:-top-0 { + top: 0px; + } + + .md\:-right-0 { + right: 0px; + } + + .md\:-bottom-0 { + bottom: 0px; + } + + .md\:-left-0 { + left: 0px; + } + + .md\:-top-1 { + top: -0.25rem; + } + + .md\:-right-1 { + right: -0.25rem; + } + + .md\:-bottom-1 { + bottom: -0.25rem; + } + + .md\:-left-1 { + left: -0.25rem; + } + + .md\:-top-2 { + top: -0.5rem; + } + + .md\:-right-2 { + right: -0.5rem; + } + + .md\:-bottom-2 { + bottom: -0.5rem; + } + + .md\:-left-2 { + left: -0.5rem; + } + + .md\:-top-3 { + top: -0.75rem; + } + + .md\:-right-3 { + right: -0.75rem; + } + + .md\:-bottom-3 { + bottom: -0.75rem; + } + + .md\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .md\:-right-14 { + right: -3.5rem; + } + + .md\:-bottom-14 { + bottom: -3.5rem; + } + + .md\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .md\:-right-px { + right: -1px; + } + + .md\:-bottom-px { + bottom: -1px; + } + + .md\:-left-px { + left: -1px; + } + + .md\:-top-0\.5 { + top: -0.125rem; + } + + .md\:-right-0\.5 { + right: -0.125rem; + } + + .md\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .md\:-left-0\.5 { + left: -0.125rem; + } + + .md\:-top-1\.5 { + top: -0.375rem; + } + + .md\:-right-1\.5 { + right: -0.375rem; + } + + .md\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .md\:-left-1\.5 { + left: -0.375rem; + } + + .md\:-top-2\.5 { + top: -0.625rem; + } + + .md\:-right-2\.5 { + right: -0.625rem; + } + + .md\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .md\:-left-2\.5 { + left: -0.625rem; + } + + .md\:-top-3\.5 { + top: -0.875rem; + } + + .md\:-right-3\.5 { + right: -0.875rem; + } + + .md\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .md\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .md\:right-full { + right: 100%; + } + + .md\:bottom-full { + bottom: 100%; + } + + .md\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .md\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .md\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:ring-inset { + --tw-ring-inset: inset; + } + + .md\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .md\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .md\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .md\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .md\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .md\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .md\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .md\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .md\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .md\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .md\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .md\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .md\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .md\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .md\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .md\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .md\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .md\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .md\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .md\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .md\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .md\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .md\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .md\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .md\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .md\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .md\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .md\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .md\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .md\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .md\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .md\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .md\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .md\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .md\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .md\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .md\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .md\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .md\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .md\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .md\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .md\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .md\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .md\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .md\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .md\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .md\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .md\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .md\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .md\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .md\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .md\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .md\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .md\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .md\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .md\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .md\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .md\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .md\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .md\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .md\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .md\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .md\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .md\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .md\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .md\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .md\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .md\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .md\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .md\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .md\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .md\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .md\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .md\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .md\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .md\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .md\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .md\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .md\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .md\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .md\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .md\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .md\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .md\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .md\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .md\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .md\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .md\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .md\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .md\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .md\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .md\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .md\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .md\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .md\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .md\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .md\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .md\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .md\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .md\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .md\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .md\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .md\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .md\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .md\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .md\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .md\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .md\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .md\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .md\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .md\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .md\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .md\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .md\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .md\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .md\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .md\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .md\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .md\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .md\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .md\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .md\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .md\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .md\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .md\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .md\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .md\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .md\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .md\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .md\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .md\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .md\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .md\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .md\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .md\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .md\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .md\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .md\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .md\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .md\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .md\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .md\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .md\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .md\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .md\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .md\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .md\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .md\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .md\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .md\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .md\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .md\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .md\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .md\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .md\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .md\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .md\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .md\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .md\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .md\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .md\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .md\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .md\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .md\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .md\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .md\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .md\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .md\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .md\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .md\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .md\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .md\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .md\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .md\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .md\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .md\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .md\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .md\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .md\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .md\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .md\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .md\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .md\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .md\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .md\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .md\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .md\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .md\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .md\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .md\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .md\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .md\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .md\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .md\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .md\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .md\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .md\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .md\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .md\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .md\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .md\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .md\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .md\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .md\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .md\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .md\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .md\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .md\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .md\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .md\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .md\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .md\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .md\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .md\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .md\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .md\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .md\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .md\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .md\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .md\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .md\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .md\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .md\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .md\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .md\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .md\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .md\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .md\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .md\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .md\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .md\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .md\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .md\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .md\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .md\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .md\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .md\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .md\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .md\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .md\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .md\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .md\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .md\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .md\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .md\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .md\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .md\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .md\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .md\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .md\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .md\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .md\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .md\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .md\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .md\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .md\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .md\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .md\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .md\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .md\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .md\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .md\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .md\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .md\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .md\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .md\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .md\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .md\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .md\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .md\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .md\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .md\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .md\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .md\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .md\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .md\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .md\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .md\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .md\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .md\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .md\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .md\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .md\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .md\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .md\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .md\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .md\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .md\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .md\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .md\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .md\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .md\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .md\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .md\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .md\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .md\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .md\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .md\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .md\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .md\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .md\:ring-current { + --tw-ring-color: currentColor; + } + + .md\:ring-transparent { + --tw-ring-color: transparent; + } + + .md\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .md\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .md\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .md\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .md\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .md\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .md\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .md\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .md\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .md\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .md\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .md\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .md\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .md\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .md\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .md\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .md\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .md\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .md\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .md\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .md\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .md\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .md\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .md\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .md\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .md\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .md\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .md\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .md\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .md\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .md\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .md\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .md\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .md\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .md\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .md\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .md\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .md\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .md\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .md\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .md\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .md\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .md\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .md\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .md\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .md\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .md\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .md\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .md\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .md\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .md\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .md\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .md\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .md\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .md\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .md\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .md\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .md\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .md\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .md\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .md\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .md\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .md\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .md\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .md\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .md\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .md\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .md\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .md\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .md\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .md\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .md\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .md\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .md\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .md\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .md\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .md\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .md\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .md\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .md\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .md\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .md\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .md\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .md\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .md\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .md\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .md\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .md\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .md\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .md\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .md\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .md\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .md\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .md\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .md\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .md\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .md\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .md\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .md\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .md\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .md\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .md\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .md\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .md\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .md\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .md\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .md\:text-transparent { + color: transparent; + } + + .md\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .md\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .md\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .md\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .md\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .md\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:hover\:text-current:hover { + color: currentColor; + } + + .md\:hover\:text-transparent:hover { + color: transparent; + } + + .md\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus\:text-current:focus { + color: currentColor; + } + + .md\:focus\:text-transparent:focus { + color: transparent; + } + + .md\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .md\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .md\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .md\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .md\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .md\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .md\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .md\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .md\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .md\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .md\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .md\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .md\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .md\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .md\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .md\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .md\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .md\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .md\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .md\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .md\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .md\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .md\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .md\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .md\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .md\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .md\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .md\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .md\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .md\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .md\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .md\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .md\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .md\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .md\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .md\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .md\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .md\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .md\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .md\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .md\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .md\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .md\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .md\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .md\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .md\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .md\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .md\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .md\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .md\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .md\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .md\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .md\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .md\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .md\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .md\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .md\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .md\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .md\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .md\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .md\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .md\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .md\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .md\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .md\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .md\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .md\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .md\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .md\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .md\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .md\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .md\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .md\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .md\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .md\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .md\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .md\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .md\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .md\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .md\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .md\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .md\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .md\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .md\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .md\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .md\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .md\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .md\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .md\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .md\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .md\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .md\:focus-within\:no-underline:focus-within { + 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\:ordinal, .md\:slashed-zero, .md\:lining-nums, .md\:oldstyle-nums, .md\:proportional-nums, .md\:tabular-nums, .md\:diagonal-fractions, .md\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .md\:normal-nums { + font-variant-numeric: normal; + } + + .md\:ordinal { + --tw-ordinal: ordinal; + } + + .md\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .md\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .md\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .md\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .md\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .md\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .md\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .md\:tracking-tighter { + letter-spacing: -0.02em; + } + + .md\:tracking-tight { + letter-spacing: -1px; + } + + .md\:tracking-normal { + letter-spacing: 0em; + } + + .md\:tracking-wide { + letter-spacing: 0.03em; + } + + .md\:tracking-wider { + letter-spacing: 0.08em; + } + + .md\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .md\:w-1 { + width: 0.25rem; + } + + .md\:w-2 { + width: 0.5rem; + } + + .md\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .md\:w-1\.5 { + width: 0.375rem; + } + + .md\:w-2\.5 { + width: 0.625rem; + } + + .md\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .md\:gap-1 { + gap: 0.25rem; + } + + .md\:gap-2 { + gap: 0.5rem; + } + + .md\:gap-3 { + gap: 0.75rem; + } + + .md\:gap-4 { + gap: 1rem; + } + + .md\:gap-5 { + gap: 1.25rem; + } + + .md\:gap-6 { + gap: 1.5rem; + } + + .md\:gap-7 { + gap: 1.75rem; + } + + .md\:gap-8 { + gap: 2rem; + } + + .md\:gap-9 { + gap: 2.25rem; + } + + .md\:gap-10 { + gap: 2.5rem; + } + + .md\:gap-11 { + gap: 2.75rem; + } + + .md\:gap-12 { + gap: 3rem; + } + + .md\:gap-14 { + gap: 3.5rem; + } + + .md\:gap-16 { + gap: 4rem; + } + + .md\:gap-20 { + gap: 5rem; + } + + .md\:gap-24 { + gap: 6rem; + } + + .md\:gap-28 { + gap: 7rem; + } + + .md\:gap-32 { + gap: 8rem; + } + + .md\:gap-36 { + gap: 9rem; + } + + .md\:gap-40 { + gap: 10rem; + } + + .md\:gap-44 { + gap: 11rem; + } + + .md\:gap-48 { + gap: 12rem; + } + + .md\:gap-52 { + gap: 13rem; + } + + .md\:gap-56 { + gap: 14rem; + } + + .md\:gap-60 { + gap: 15rem; + } + + .md\:gap-64 { + gap: 16rem; + } + + .md\:gap-72 { + gap: 18rem; + } + + .md\:gap-80 { + gap: 20rem; + } + + .md\:gap-96 { + gap: 24rem; + } + + .md\:gap-px { + gap: 1px; + } + + .md\:gap-0\.5 { + gap: 0.125rem; + } + + .md\:gap-1\.5 { + gap: 0.375rem; + } + + .md\:gap-2\.5 { + gap: 0.625rem; + } + + .md\:gap-3\.5 { + gap: 0.875rem; + } + + .md\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .md\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .md\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .md\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .md\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .md\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .md\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .md\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .md\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .md\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .md\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .md\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .md\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .md\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .md\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .md\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .md\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .md\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .md\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .md\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .md\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .md\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .md\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .md\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .md\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .md\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .md\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .md\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .md\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .md\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .md\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .md\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .md\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .md\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .md\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .md\:gap-y-0 { + row-gap: 0px; + } + + .md\:gap-y-1 { + row-gap: 0.25rem; + } + + .md\:gap-y-2 { + row-gap: 0.5rem; + } + + .md\:gap-y-3 { + row-gap: 0.75rem; + } + + .md\:gap-y-4 { + row-gap: 1rem; + } + + .md\:gap-y-5 { + row-gap: 1.25rem; + } + + .md\:gap-y-6 { + row-gap: 1.5rem; + } + + .md\:gap-y-7 { + row-gap: 1.75rem; + } + + .md\:gap-y-8 { + row-gap: 2rem; + } + + .md\:gap-y-9 { + row-gap: 2.25rem; + } + + .md\:gap-y-10 { + row-gap: 2.5rem; + } + + .md\:gap-y-11 { + row-gap: 2.75rem; + } + + .md\:gap-y-12 { + row-gap: 3rem; + } + + .md\:gap-y-14 { + row-gap: 3.5rem; + } + + .md\:gap-y-16 { + row-gap: 4rem; + } + + .md\:gap-y-20 { + row-gap: 5rem; + } + + .md\:gap-y-24 { + row-gap: 6rem; + } + + .md\:gap-y-28 { + row-gap: 7rem; + } + + .md\:gap-y-32 { + row-gap: 8rem; + } + + .md\:gap-y-36 { + row-gap: 9rem; + } + + .md\:gap-y-40 { + row-gap: 10rem; + } + + .md\:gap-y-44 { + row-gap: 11rem; + } + + .md\:gap-y-48 { + row-gap: 12rem; + } + + .md\:gap-y-52 { + row-gap: 13rem; + } + + .md\:gap-y-56 { + row-gap: 14rem; + } + + .md\:gap-y-60 { + row-gap: 15rem; + } + + .md\:gap-y-64 { + row-gap: 16rem; + } + + .md\:gap-y-72 { + row-gap: 18rem; + } + + .md\:gap-y-80 { + row-gap: 20rem; + } + + .md\:gap-y-96 { + row-gap: 24rem; + } + + .md\:gap-y-px { + row-gap: 1px; + } + + .md\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .md\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .md\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .md\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .md\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .md\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .md\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .md\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .md\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .md\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .md\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:scale-x-0 { + --tw-scale-x: 0; + } + + .md\:scale-x-50 { + --tw-scale-x: .5; + } + + .md\:scale-x-75 { + --tw-scale-x: .75; + } + + .md\:scale-x-90 { + --tw-scale-x: .9; + } + + .md\:scale-x-95 { + --tw-scale-x: .95; + } + + .md\:scale-x-100 { + --tw-scale-x: 1; + } + + .md\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .md\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .md\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .md\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .md\:scale-y-0 { + --tw-scale-y: 0; + } + + .md\:scale-y-50 { + --tw-scale-y: .5; + } + + .md\:scale-y-75 { + --tw-scale-y: .75; + } + + .md\:scale-y-90 { + --tw-scale-y: .9; + } + + .md\:scale-y-95 { + --tw-scale-y: .95; + } + + .md\:scale-y-100 { + --tw-scale-y: 1; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .md\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .md\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .md\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .md\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .md\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .md\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .md\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .md\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .md\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .md\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .md\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .md\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .md\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .md\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .md\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .md\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .md\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .md\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .md\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .md\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .md\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .md\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .md\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .md\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .md\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .md\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .md\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .md\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .md\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .md\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .md\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .md\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .md\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .md\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .md\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .md\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .md\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .md\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .md\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .md\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .md\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .md\:rotate-0 { + --tw-rotate: 0deg; + } + + .md\:rotate-1 { + --tw-rotate: 1deg; + } + + .md\:rotate-2 { + --tw-rotate: 2deg; + } + + .md\:rotate-3 { + --tw-rotate: 3deg; + } + + .md\:rotate-6 { + --tw-rotate: 6deg; + } + + .md\:rotate-12 { + --tw-rotate: 12deg; + } + + .md\:rotate-45 { + --tw-rotate: 45deg; + } + + .md\:rotate-90 { + --tw-rotate: 90deg; + } + + .md\:rotate-180 { + --tw-rotate: 180deg; + } + + .md\:-rotate-180 { + --tw-rotate: -180deg; + } + + .md\:-rotate-90 { + --tw-rotate: -90deg; + } + + .md\:-rotate-45 { + --tw-rotate: -45deg; + } + + .md\:-rotate-12 { + --tw-rotate: -12deg; + } + + .md\:-rotate-6 { + --tw-rotate: -6deg; + } + + .md\:-rotate-3 { + --tw-rotate: -3deg; + } + + .md\:-rotate-2 { + --tw-rotate: -2deg; + } + + .md\:-rotate-1 { + --tw-rotate: -1deg; + } + + .md\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .md\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .md\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .md\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .md\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .md\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .md\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .md\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .md\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .md\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .md\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .md\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .md\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .md\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .md\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .md\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .md\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .md\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .md\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .md\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .md\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .md\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .md\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .md\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .md\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .md\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .md\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .md\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .md\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .md\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .md\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .md\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .md\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .md\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .md\:translate-x-0 { + --tw-translate-x: 0px; + } + + .md\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .md\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .md\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .md\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .md\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .md\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .md\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .md\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .md\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .md\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .md\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .md\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .md\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .md\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .md\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .md\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .md\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .md\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .md\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .md\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .md\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .md\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .md\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .md\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .md\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .md\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .md\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .md\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .md\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .md\:translate-x-px { + --tw-translate-x: 1px; + } + + .md\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .md\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .md\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .md\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .md\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .md\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .md\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .md\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .md\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .md\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .md\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .md\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .md\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .md\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .md\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .md\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .md\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .md\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .md\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .md\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .md\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .md\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .md\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .md\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .md\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .md\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .md\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .md\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .md\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .md\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .md\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .md\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .md\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .md\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .md\:-translate-x-px { + --tw-translate-x: -1px; + } + + .md\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .md\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .md\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .md\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .md\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .md\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .md\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .md\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .md\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .md\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .md\:translate-x-full { + --tw-translate-x: 100%; + } + + .md\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .md\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .md\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .md\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .md\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .md\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .md\:-translate-x-full { + --tw-translate-x: -100%; + } + + .md\:translate-y-0 { + --tw-translate-y: 0px; + } + + .md\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .md\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .md\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .md\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .md\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .md\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .md\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .md\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .md\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .md\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .md\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .md\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .md\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .md\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .md\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .md\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .md\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .md\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .md\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .md\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .md\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .md\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .md\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .md\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .md\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .md\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .md\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .md\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .md\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .md\:translate-y-px { + --tw-translate-y: 1px; + } + + .md\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .md\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .md\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .md\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .md\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .md\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .md\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .md\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .md\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .md\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .md\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .md\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .md\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .md\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .md\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .md\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .md\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .md\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .md\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .md\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .md\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .md\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .md\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .md\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .md\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .md\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .md\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .md\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .md\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .md\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .md\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .md\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .md\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .md\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .md\:-translate-y-px { + --tw-translate-y: -1px; + } + + .md\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .md\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .md\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .md\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .md\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .md\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .md\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .md\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .md\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .md\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .md\:translate-y-full { + --tw-translate-y: 100%; + } + + .md\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .md\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .md\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .md\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .md\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .md\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .md\:-translate-y-full { + --tw-translate-y: -100%; + } + + .md\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .md\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .md\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .md\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .md\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .md\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .md\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .md\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .md\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .md\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .md\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .md\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .md\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .md\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .md\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .md\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .md\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .md\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .md\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .md\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .md\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .md\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .md\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .md\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .md\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .md\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .md\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .md\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .md\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .md\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .md\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .md\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .md\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .md\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .md\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .md\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .md\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .md\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .md\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .md\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .md\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .md\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .md\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .md\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .md\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .md\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .md\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .md\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .md\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .md\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .md\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .md\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .md\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .md\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .md\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .md\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .md\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .md\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .md\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .md\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .md\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .md\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .md\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .md\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .md\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .md\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .md\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .md\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .md\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .md\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .md\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .md\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .md\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .md\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .md\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .md\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .md\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .md\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .md\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .md\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .md\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .md\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .md\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .md\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .md\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .md\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .md\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .md\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .md\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .md\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .md\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .md\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .md\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .md\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .md\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .md\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .md\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .md\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .md\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .md\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .md\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .md\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .md\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .md\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .md\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .md\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .md\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .md\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .md\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .md\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .md\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .md\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .md\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .md\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .md\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .md\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .md\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .md\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .md\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .md\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .md\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .md\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .md\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .md\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .md\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .md\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .md\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .md\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .md\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .md\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .md\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .md\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .md\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .md\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .md\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .md\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .md\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .md\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .md\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .md\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .md\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .md\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .md\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .md\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .md\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .md\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .md\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .md\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .md\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .md\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .md\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .md\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .md\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .md\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .md\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .md\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .md\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .md\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .md\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .md\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .md\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .md\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .md\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .md\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .md\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .md\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .md\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .md\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .md\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .md\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .md\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .md\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .md\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .md\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .md\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .md\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .md\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .md\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .md\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .md\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .md\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .md\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .md\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .md\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .md\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .md\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .md\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .md\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .md\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .md\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .md\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .md\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .md\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .md\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .md\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .md\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .md\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .md\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .md\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .md\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .md\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .md\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .md\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .md\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .md\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .md\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .md\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .md\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .md\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .md\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .md\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .md\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .md\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .md\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .md\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .md\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .md\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .md\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .md\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .md\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .md\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .md\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .md\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .md\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .md\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .md\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .md\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .md\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .md\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .md\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .md\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .md\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .md\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .md\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .md\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .md\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .md\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .md\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .md\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .md\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .md\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .md\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .md\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .md\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .md\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .md\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .md\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .md\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .md\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .md\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .md\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .md\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .md\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .md\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .md\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .md\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .md\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .md\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .md\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .md\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .md\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .md\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .md\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .md\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .md\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .md\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .md\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .md\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .md\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .md\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .md\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .md\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .md\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .md\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .md\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .md\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .md\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .md\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .md\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .md\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .md\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .md\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .md\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .md\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .md\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .md\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .md\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .md\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .md\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .md\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .md\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .md\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .md\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .md\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .md\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .md\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .md\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .md\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .md\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .md\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .md\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .md\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .md\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .md\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .md\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .md\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .md\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .md\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .md\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .md\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .md\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .md\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .md\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .md\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .md\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .md\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .md\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .md\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .md\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .md\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .md\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .md\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .md\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .md\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .md\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .md\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .md\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .md\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .md\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .md\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .md\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .md\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .md\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .md\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .md\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .md\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .md\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .md\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .md\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .md\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .md\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .md\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .md\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .md\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .md\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .md\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .md\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .md\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .md\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .md\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .md\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .md\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .md\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .md\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .md\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .md\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .md\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .md\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .md\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .md\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .md\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .md\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .md\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .md\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .md\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .md\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .md\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .md\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .md\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .md\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .md\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .md\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .md\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .md\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .md\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .md\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .md\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .md\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .md\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .md\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .md\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .md\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .md\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .md\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .md\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .md\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .md\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .md\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .md\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .md\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .md\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .md\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .md\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .md\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .md\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .md\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .md\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .md\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .md\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .md\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .md\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .md\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .md\:transition-none { + transition-property: none; + } + + .md\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .md\:ease-linear { + transition-timing-function: linear; + } + + .md\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .md\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .md\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .md\:duration-75 { + transition-duration: 75ms; + } + + .md\:duration-100 { + transition-duration: 100ms; + } + + .md\:duration-150 { + transition-duration: 150ms; + } + + .md\:duration-200 { + transition-duration: 200ms; + } + + .md\:duration-300 { + transition-duration: 300ms; + } + + .md\:duration-500 { + transition-duration: 500ms; + } + + .md\:duration-700 { + transition-duration: 700ms; + } + + .md\:duration-1000 { + transition-duration: 1000ms; + } + + .md\:delay-75 { + transition-delay: 75ms; + } + + .md\:delay-100 { + transition-delay: 100ms; + } + + .md\:delay-150 { + transition-delay: 150ms; + } + + .md\:delay-200 { + transition-delay: 200ms; + } + + .md\:delay-300 { + transition-delay: 300ms; + } + + .md\:delay-500 { + transition-delay: 500ms; + } + + .md\:delay-700 { + transition-delay: 700ms; + } + + .md\:delay-1000 { + transition-delay: 1000ms; + } + + .md\:animate-none { + -webkit-animation: none; + animation: none; + } + + .md\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .md\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .md\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .md\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@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; + } + } + + @media (min-width: 1536px) { + .lg\:container { + max-width: 1536px; + } + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .lg\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .lg\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .lg\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .lg\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .lg\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .lg\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .lg\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .lg\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .lg\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .lg\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .lg\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .lg\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .lg\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .lg\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .lg\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .lg\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .lg\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .lg\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .lg\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .lg\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .lg\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .lg\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .lg\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .lg\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .lg\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .lg\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .lg\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .lg\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .lg\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .lg\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .lg\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .lg\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .lg\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .lg\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .lg\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .lg\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .lg\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .lg\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .lg\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .lg\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .lg\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .lg\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .lg\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .lg\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .lg\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .lg\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .lg\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .lg\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .lg\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .lg\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .lg\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .lg\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .lg\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .lg\:bg-clip-padding { + background-clip: padding-box; + } + + .lg\:bg-clip-content { + background-clip: content-box; + } + + .lg\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .lg\:bg-current { + background-color: currentColor; + } + + .lg\:bg-transparent { + background-color: transparent; + } + + .lg\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .lg\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .lg\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .lg\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .lg\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .lg\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-current:hover { + background-color: currentColor; + } + + .lg\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .lg\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-current:focus { + background-color: currentColor; + } + + .lg\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .lg\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .lg\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .lg\:bg-none { + background-image: none; + } + + .lg\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .lg\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .lg\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:to-current { + --tw-gradient-to: currentColor; + } + + .lg\:to-transparent { + --tw-gradient-to: transparent; + } + + .lg\:to-black { + --tw-gradient-to: #000; + } + + .lg\:to-white { + --tw-gradient-to: #fff; + } + + .lg\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .lg\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .lg\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .lg\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .lg\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .lg\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .lg\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .lg\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .lg\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .lg\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .lg\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .lg\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .lg\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .lg\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .lg\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .lg\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .lg\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .lg\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .lg\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .lg\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .lg\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .lg\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .lg\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .lg\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .lg\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .lg\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .lg\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .lg\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .lg\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .lg\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .lg\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .lg\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .lg\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .lg\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .lg\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .lg\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .lg\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .lg\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .lg\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .lg\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .lg\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .lg\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .lg\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .lg\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .lg\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .lg\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .lg\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .lg\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .lg\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .lg\:to-green-900 { + --tw-gradient-to: #156633; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .lg\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .lg\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .lg\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .lg\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .lg\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .lg\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .lg\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .lg\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .lg\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .lg\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .lg\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .lg\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .lg\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .lg\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .lg\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .lg\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .lg\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .lg\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .lg\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .lg\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .lg\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .lg\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .lg\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .lg\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .lg\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .lg\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .lg\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .lg\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .lg\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .lg\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .lg\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .lg\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .lg\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .lg\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .lg\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .lg\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .lg\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .lg\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .lg\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .lg\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .lg\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .lg\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .lg\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .lg\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .lg\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .lg\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .lg\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .lg\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .lg\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .lg\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .lg\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .lg\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .lg\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .lg\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .lg\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .lg\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .lg\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .lg\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .lg\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .lg\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .lg\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .lg\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .lg\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .lg\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .lg\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .lg\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .lg\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .lg\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .lg\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .lg\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .lg\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .lg\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .lg\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .lg\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .lg\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .lg\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .lg\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .lg\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .lg\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .lg\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .lg\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .lg\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .lg\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .lg\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .lg\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .lg\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .lg\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .lg\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .lg\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .lg\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .lg\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .lg\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .lg\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .lg\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .lg\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .lg\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .lg\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .lg\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .lg\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .lg\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .lg\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .lg\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .lg\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .lg\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .lg\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .lg\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .lg\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .lg\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .lg\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .lg\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .lg\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .lg\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .lg\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .lg\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .lg\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .lg\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .lg\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .lg\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .lg\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .lg\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .lg\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .lg\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .lg\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .lg\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .lg\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .lg\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .lg\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .lg\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .lg\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .lg\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .lg\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .lg\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .lg\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .lg\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .lg\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .lg\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .lg\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .lg\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .lg\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .lg\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .lg\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .lg\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .lg\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .lg\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .lg\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .lg\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .lg\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .lg\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .lg\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .lg\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .lg\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .lg\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .lg\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .lg\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .lg\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .lg\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .lg\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .lg\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .lg\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .lg\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .lg\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .lg\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .lg\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .lg\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .lg\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .lg\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .lg\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .lg\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .lg\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .lg\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .lg\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .lg\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .lg\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .lg\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .lg\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .lg\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .lg\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .lg\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .lg\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .lg\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .lg\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .lg\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .lg\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .lg\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .lg\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .lg\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .lg\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .lg\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .lg\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .lg\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .lg\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .lg\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .lg\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .lg\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .lg\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .lg\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .lg\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .lg\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .lg\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .lg\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .lg\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .lg\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .lg\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .lg\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .lg\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .lg\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .lg\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .lg\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .lg\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .lg\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .lg\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .lg\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .lg\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .lg\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .lg\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .lg\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .lg\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .lg\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .lg\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .lg\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .lg\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .lg\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .lg\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .lg\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .lg\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .lg\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .lg\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .lg\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .lg\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .lg\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .lg\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .lg\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .lg\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .lg\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .lg\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .lg\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .lg\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .lg\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .lg\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .lg\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .lg\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .lg\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .lg\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .lg\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .lg\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .lg\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .lg\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .lg\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .lg\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .lg\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .lg\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .lg\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .lg\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .lg\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .lg\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .lg\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .lg\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .lg\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .lg\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .lg\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .lg\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .lg\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .lg\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .lg\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .lg\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .lg\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .lg\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .lg\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .lg\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .lg\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .lg\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .lg\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .lg\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .lg\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .lg\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .lg\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .lg\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .lg\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .lg\:border-transparent { + border-color: transparent; + } + + .lg\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .lg\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .lg\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .lg\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .lg\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .lg\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:hover\:border-current:hover { + border-color: currentColor; + } + + .lg\:hover\:border-transparent:hover { + border-color: transparent; + } + + .lg\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:focus\:border-current:focus { + border-color: currentColor; + } + + .lg\:focus\:border-transparent:focus { + border-color: transparent; + } + + .lg\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .lg\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .lg\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .lg\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .lg\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .lg\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .lg\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .lg\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .lg\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .lg\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .lg\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .lg\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .lg\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .lg\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .lg\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .lg\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .lg\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .lg\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .lg\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .lg\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .lg\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .lg\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .lg\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .lg\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .lg\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .lg\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .lg\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .lg\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .lg\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .lg\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .lg\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .lg\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .lg\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .lg\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .lg\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .lg\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .lg\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .lg\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .lg\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .lg\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .lg\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .lg\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .lg\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .lg\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .lg\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .lg\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .lg\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .lg\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .lg\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .lg\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .lg\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .lg\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .lg\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .lg\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .lg\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .lg\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .lg\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .lg\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .lg\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .lg\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .lg\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .lg\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .lg\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .lg\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .lg\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .lg\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .lg\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .lg\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .lg\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .lg\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .lg\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .lg\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .lg\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .lg\:rounded-none { + border-radius: 0; + } + + .lg\:rounded-sm { + border-radius: 0.125rem; + } + + .lg\:rounded { + border-radius: 0.25rem; + } + + .lg\:rounded-md { + border-radius: 0.375rem; + } + + .lg\:rounded-lg { + border-radius: 0.5rem; + } + + .lg\:rounded-xl { + border-radius: 0.675rem; + } + + .lg\:rounded-2xl { + border-radius: 0.75rem; + } + + .lg\:rounded-3xl { + border-radius: 0.875rem; + } + + .lg\:rounded-4xl { + border-radius: 1rem; + } + + .lg\:rounded-5xl { + border-radius: 1.25rem; + } + + .lg\:rounded-6xl { + border-radius: 1.375rem; + } + + .lg\:rounded-7xl { + border-radius: 1.5rem; + } + + .lg\:rounded-8xl { + border-radius: 2rem; + } + + .lg\:rounded-9xl { + border-radius: 2.25rem; + } + + .lg\:rounded-10xl { + border-radius: 2.5rem; + } + + .lg\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .lg\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .lg\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .lg\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .lg\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .lg\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .lg\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .lg\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .lg\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .lg\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .lg\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .lg\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .lg\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .lg\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .lg\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .lg\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .lg\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .lg\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .lg\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .lg\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .lg\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .lg\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .lg\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .lg\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .lg\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .lg\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .lg\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .lg\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .lg\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .lg\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .lg\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .lg\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .lg\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .lg\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .lg\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .lg\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .lg\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .lg\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .lg\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .lg\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .lg\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .lg\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .lg\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .lg\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .lg\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .lg\:rounded-l-11xl { + 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: 0.125rem; + } + + .lg\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .lg\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .lg\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .lg\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .lg\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .lg\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .lg\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .lg\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .lg\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .lg\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .lg\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .lg\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .lg\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .lg\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .lg\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .lg\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .lg\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .lg\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .lg\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .lg\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .lg\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .lg\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .lg\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .lg\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .lg\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .lg\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .lg\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .lg\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .lg\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .lg\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .lg\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .lg\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .lg\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .lg\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .lg\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .lg\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .lg\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .lg\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .lg\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .lg\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .lg\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .lg\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .lg\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .lg\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .lg\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .lg\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .lg\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .lg\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .lg\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .lg\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .lg\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .lg\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .lg\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .lg\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .lg\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .lg\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .lg\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .lg\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .lg\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .lg\:place-items-auto { + place-items: auto; + } + + .lg\:place-items-start { + place-items: start; + } + + .lg\:place-items-end { + place-items: end; + } + + .lg\:place-items-center { + place-items: center; + } + + .lg\:place-items-stretch { + place-items: stretch; + } + + .lg\:place-content-center { + place-content: center; + } + + .lg\:place-content-start { + place-content: start; + } + + .lg\:place-content-end { + place-content: end; + } + + .lg\:place-content-between { + place-content: space-between; + } + + .lg\:place-content-around { + place-content: space-around; + } + + .lg\:place-content-evenly { + place-content: space-evenly; + } + + .lg\:place-content-stretch { + place-content: stretch; + } + + .lg\:place-self-auto { + place-self: auto; + } + + .lg\:place-self-start { + place-self: start; + } + + .lg\:place-self-end { + place-self: end; + } + + .lg\:place-self-center { + place-self: center; + } + + .lg\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .lg\:justify-items-start { + justify-items: start; + } + + .lg\:justify-items-end { + justify-items: end; + } + + .lg\:justify-items-center { + justify-items: center; + } + + .lg\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .lg\:justify-self-start { + justify-self: start; + } + + .lg\:justify-self-end { + justify-self: end; + } + + .lg\:justify-self-center { + justify-self: center; + } + + .lg\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .lg\:clear-right { + clear: right; + } + + .lg\:clear-both { + clear: both; + } + + .lg\:clear-none { + clear: none; + } + + .lg\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .lg\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .lg\:h-1 { + height: 0.25rem; + } + + .lg\:h-2 { + height: 0.5rem; + } + + .lg\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:h-1\.5 { + height: 0.375rem; + } + + .lg\:h-2\.5 { + height: 0.625rem; + } + + .lg\:h-3\.5 { + height: 0.875rem; + } + + .lg\:h-full { + height: 100%; + } + + .lg\:h-screen { + height: 100vh; + } + + .lg\:text-xxs { + font-size: 0.6875rem; + } + + .lg\:text-xs { + font-size: 0.75rem; + } + + .lg\:text-sm { + font-size: 0.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: 3.75rem; + } + + .lg\:text-7xl { + font-size: 4.5rem; + } + + .lg\:text-8xl { + font-size: 6rem; + } + + .lg\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .lg\:m-1 { + margin: 0.25rem; + } + + .lg\:m-2 { + margin: 0.5rem; + } + + .lg\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:m-1\.5 { + margin: 0.375rem; + } + + .lg\:m-2\.5 { + margin: 0.625rem; + } + + .lg\:m-3\.5 { + margin: 0.875rem; + } + + .lg\:-m-0 { + margin: 0px; + } + + .lg\:-m-1 { + margin: -0.25rem; + } + + .lg\:-m-2 { + margin: -0.5rem; + } + + .lg\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .lg\:-m-1\.5 { + margin: -0.375rem; + } + + .lg\:-m-2\.5 { + margin: -0.625rem; + } + + .lg\:-m-3\.5 { + margin: -0.875rem; + } + + .lg\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .lg\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .lg\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .lg\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .lg\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .lg\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .lg\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .lg\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .lg\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .lg\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .lg\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .lg\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .lg\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .lg\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .lg\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .lg\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .lg\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .lg\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .lg\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .lg\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .lg\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .lg\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .lg\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .lg\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .lg\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .lg\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .lg\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .lg\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .lg\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .lg\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .lg\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .lg\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .lg\:mt-0 { + margin-top: 0px; + } + + .lg\:mr-0 { + margin-right: 0px; + } + + .lg\:mb-0 { + margin-bottom: 0px; + } + + .lg\:ml-0 { + margin-left: 0px; + } + + .lg\:mt-1 { + margin-top: 0.25rem; + } + + .lg\:mr-1 { + margin-right: 0.25rem; + } + + .lg\:mb-1 { + margin-bottom: 0.25rem; + } + + .lg\:ml-1 { + margin-left: 0.25rem; + } + + .lg\:mt-2 { + margin-top: 0.5rem; + } + + .lg\:mr-2 { + margin-right: 0.5rem; + } + + .lg\:mb-2 { + margin-bottom: 0.5rem; + } + + .lg\:ml-2 { + margin-left: 0.5rem; + } + + .lg\:mt-3 { + margin-top: 0.75rem; + } + + .lg\:mr-3 { + margin-right: 0.75rem; + } + + .lg\:mb-3 { + margin-bottom: 0.75rem; + } + + .lg\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .lg\:mr-0\.5 { + margin-right: 0.125rem; + } + + .lg\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .lg\:ml-0\.5 { + margin-left: 0.125rem; + } + + .lg\:mt-1\.5 { + margin-top: 0.375rem; + } + + .lg\:mr-1\.5 { + margin-right: 0.375rem; + } + + .lg\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .lg\:ml-1\.5 { + margin-left: 0.375rem; + } + + .lg\:mt-2\.5 { + margin-top: 0.625rem; + } + + .lg\:mr-2\.5 { + margin-right: 0.625rem; + } + + .lg\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .lg\:ml-2\.5 { + margin-left: 0.625rem; + } + + .lg\:mt-3\.5 { + margin-top: 0.875rem; + } + + .lg\:mr-3\.5 { + margin-right: 0.875rem; + } + + .lg\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .lg\:ml-3\.5 { + margin-left: 0.875rem; + } + + .lg\:-mt-0 { + margin-top: 0px; + } + + .lg\:-mr-0 { + margin-right: 0px; + } + + .lg\:-mb-0 { + margin-bottom: 0px; + } + + .lg\:-ml-0 { + margin-left: 0px; + } + + .lg\:-mt-1 { + margin-top: -0.25rem; + } + + .lg\:-mr-1 { + margin-right: -0.25rem; + } + + .lg\:-mb-1 { + margin-bottom: -0.25rem; + } + + .lg\:-ml-1 { + margin-left: -0.25rem; + } + + .lg\:-mt-2 { + margin-top: -0.5rem; + } + + .lg\:-mr-2 { + margin-right: -0.5rem; + } + + .lg\:-mb-2 { + margin-bottom: -0.5rem; + } + + .lg\:-ml-2 { + margin-left: -0.5rem; + } + + .lg\:-mt-3 { + margin-top: -0.75rem; + } + + .lg\:-mr-3 { + margin-right: -0.75rem; + } + + .lg\:-mb-3 { + margin-bottom: -0.75rem; + } + + .lg\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .lg\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .lg\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .lg\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .lg\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .lg\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .lg\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .lg\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .lg\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .lg\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .lg\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .lg\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .lg\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .lg\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .lg\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .lg\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .lg\:max-h-full { + max-height: 100%; + } + + .lg\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .lg\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .lg\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .lg\:opacity-10 { + opacity: 0.1; + } + + .lg\:opacity-20 { + opacity: 0.2; + } + + .lg\:opacity-25 { + opacity: 0.25; + } + + .lg\:opacity-30 { + opacity: 0.3; + } + + .lg\:opacity-40 { + opacity: 0.4; + } + + .lg\:opacity-50 { + opacity: 0.5; + } + + .lg\:opacity-60 { + opacity: 0.6; + } + + .lg\:opacity-70 { + opacity: 0.7; + } + + .lg\:opacity-75 { + opacity: 0.75; + } + + .lg\:opacity-80 { + opacity: 0.8; + } + + .lg\:opacity-90 { + opacity: 0.9; + } + + .lg\:opacity-95 { + opacity: 0.95; + } + + .lg\:opacity-100 { + opacity: 1; + } + + .group:hover .lg\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .lg\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .lg\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .lg\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .lg\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .lg\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .lg\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .lg\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .lg\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .lg\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .lg\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .lg\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .lg\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .lg\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .lg\:group-hover\:opacity-100 { + opacity: 1; + } + + .lg\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .lg\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .lg\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .lg\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .lg\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .lg\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .lg\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .lg\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .lg\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .lg\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .lg\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .lg\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .lg\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .lg\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .lg\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .lg\:hover\:opacity-0:hover { + opacity: 0; + } + + .lg\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .lg\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .lg\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .lg\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .lg\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .lg\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .lg\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .lg\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .lg\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .lg\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .lg\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .lg\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .lg\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .lg\:hover\:opacity-100:hover { + opacity: 1; + } + + .lg\:focus\:opacity-0:focus { + opacity: 0; + } + + .lg\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .lg\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .lg\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .lg\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .lg\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .lg\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .lg\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .lg\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .lg\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .lg\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .lg\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .lg\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .lg\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .lg\:focus\:opacity-100:focus { + opacity: 1; + } + + .lg\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .lg\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .lg\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .lg\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .lg\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .lg\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .lg\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .lg\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .lg\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .lg\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .lg\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .lg\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .lg\:p-0 { + padding: 0px; + } + + .lg\:p-1 { + padding: 0.25rem; + } + + .lg\:p-2 { + padding: 0.5rem; + } + + .lg\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:p-1\.5 { + padding: 0.375rem; + } + + .lg\:p-2\.5 { + padding: 0.625rem; + } + + .lg\:p-3\.5 { + padding: 0.875rem; + } + + .lg\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .lg\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .lg\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .lg\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .lg\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .lg\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .lg\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .lg\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .lg\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .lg\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .lg\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .lg\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .lg\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .lg\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .lg\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .lg\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .lg\:pt-0 { + padding-top: 0px; + } + + .lg\:pr-0 { + padding-right: 0px; + } + + .lg\:pb-0 { + padding-bottom: 0px; + } + + .lg\:pl-0 { + padding-left: 0px; + } + + .lg\:pt-1 { + padding-top: 0.25rem; + } + + .lg\:pr-1 { + padding-right: 0.25rem; + } + + .lg\:pb-1 { + padding-bottom: 0.25rem; + } + + .lg\:pl-1 { + padding-left: 0.25rem; + } + + .lg\:pt-2 { + padding-top: 0.5rem; + } + + .lg\:pr-2 { + padding-right: 0.5rem; + } + + .lg\:pb-2 { + padding-bottom: 0.5rem; + } + + .lg\:pl-2 { + padding-left: 0.5rem; + } + + .lg\:pt-3 { + padding-top: 0.75rem; + } + + .lg\:pr-3 { + padding-right: 0.75rem; + } + + .lg\:pb-3 { + padding-bottom: 0.75rem; + } + + .lg\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .lg\:pr-0\.5 { + padding-right: 0.125rem; + } + + .lg\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .lg\:pl-0\.5 { + padding-left: 0.125rem; + } + + .lg\:pt-1\.5 { + padding-top: 0.375rem; + } + + .lg\:pr-1\.5 { + padding-right: 0.375rem; + } + + .lg\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .lg\:pl-1\.5 { + padding-left: 0.375rem; + } + + .lg\:pt-2\.5 { + padding-top: 0.625rem; + } + + .lg\:pr-2\.5 { + padding-right: 0.625rem; + } + + .lg\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .lg\:pl-2\.5 { + padding-left: 0.625rem; + } + + .lg\:pt-3\.5 { + padding-top: 0.875rem; + } + + .lg\:pr-3\.5 { + padding-right: 0.875rem; + } + + .lg\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .lg\:pl-3\.5 { + padding-left: 0.875rem; + } + + .lg\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .lg\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .lg\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .lg\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .lg\:placeholder-current::placeholder { + color: currentColor; + } + + .lg\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .lg\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .lg\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .lg\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .lg\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .lg\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .lg\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .lg\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .lg\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .lg\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .lg\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .lg\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .lg\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .lg\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .lg\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .lg\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .lg\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .lg\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .lg\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .lg\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .lg\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .lg\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .lg\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .lg\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .lg\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .lg\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .lg\:inset-x-0 { + right: 0px; + left: 0px; + } + + .lg\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .lg\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .lg\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .lg\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .lg\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .lg\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .lg\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .lg\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .lg\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .lg\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .lg\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .lg\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .lg\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .lg\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .lg\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .lg\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .lg\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .lg\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .lg\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .lg\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .lg\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .lg\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .lg\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .lg\:-inset-x-px { + right: -1px; + left: -1px; + } + + .lg\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .lg\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .lg\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .lg\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .lg\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .lg\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .lg\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .lg\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .lg\:-inset-x-full { + right: -100%; + left: -100%; + } + + .lg\:top-0 { + top: 0px; + } + + .lg\:right-0 { + right: 0px; + } + + .lg\:bottom-0 { + bottom: 0px; + } + + .lg\:left-0 { + left: 0px; + } + + .lg\:top-1 { + top: 0.25rem; + } + + .lg\:right-1 { + right: 0.25rem; + } + + .lg\:bottom-1 { + bottom: 0.25rem; + } + + .lg\:left-1 { + left: 0.25rem; + } + + .lg\:top-2 { + top: 0.5rem; + } + + .lg\:right-2 { + right: 0.5rem; + } + + .lg\:bottom-2 { + bottom: 0.5rem; + } + + .lg\:left-2 { + left: 0.5rem; + } + + .lg\:top-3 { + top: 0.75rem; + } + + .lg\:right-3 { + right: 0.75rem; + } + + .lg\:bottom-3 { + bottom: 0.75rem; + } + + .lg\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .lg\:right-14 { + right: 3.5rem; + } + + .lg\:bottom-14 { + bottom: 3.5rem; + } + + .lg\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:right-0\.5 { + right: 0.125rem; + } + + .lg\:bottom-0\.5 { + bottom: 0.125rem; + } + + .lg\:left-0\.5 { + left: 0.125rem; + } + + .lg\:top-1\.5 { + top: 0.375rem; + } + + .lg\:right-1\.5 { + right: 0.375rem; + } + + .lg\:bottom-1\.5 { + bottom: 0.375rem; + } + + .lg\:left-1\.5 { + left: 0.375rem; + } + + .lg\:top-2\.5 { + top: 0.625rem; + } + + .lg\:right-2\.5 { + right: 0.625rem; + } + + .lg\:bottom-2\.5 { + bottom: 0.625rem; + } + + .lg\:left-2\.5 { + left: 0.625rem; + } + + .lg\:top-3\.5 { + top: 0.875rem; + } + + .lg\:right-3\.5 { + right: 0.875rem; + } + + .lg\:bottom-3\.5 { + bottom: 0.875rem; + } + + .lg\:left-3\.5 { + left: 0.875rem; + } + + .lg\:-top-0 { + top: 0px; + } + + .lg\:-right-0 { + right: 0px; + } + + .lg\:-bottom-0 { + bottom: 0px; + } + + .lg\:-left-0 { + left: 0px; + } + + .lg\:-top-1 { + top: -0.25rem; + } + + .lg\:-right-1 { + right: -0.25rem; + } + + .lg\:-bottom-1 { + bottom: -0.25rem; + } + + .lg\:-left-1 { + left: -0.25rem; + } + + .lg\:-top-2 { + top: -0.5rem; + } + + .lg\:-right-2 { + right: -0.5rem; + } + + .lg\:-bottom-2 { + bottom: -0.5rem; + } + + .lg\:-left-2 { + left: -0.5rem; + } + + .lg\:-top-3 { + top: -0.75rem; + } + + .lg\:-right-3 { + right: -0.75rem; + } + + .lg\:-bottom-3 { + bottom: -0.75rem; + } + + .lg\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .lg\:-right-14 { + right: -3.5rem; + } + + .lg\:-bottom-14 { + bottom: -3.5rem; + } + + .lg\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .lg\:-right-px { + right: -1px; + } + + .lg\:-bottom-px { + bottom: -1px; + } + + .lg\:-left-px { + left: -1px; + } + + .lg\:-top-0\.5 { + top: -0.125rem; + } + + .lg\:-right-0\.5 { + right: -0.125rem; + } + + .lg\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .lg\:-left-0\.5 { + left: -0.125rem; + } + + .lg\:-top-1\.5 { + top: -0.375rem; + } + + .lg\:-right-1\.5 { + right: -0.375rem; + } + + .lg\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .lg\:-left-1\.5 { + left: -0.375rem; + } + + .lg\:-top-2\.5 { + top: -0.625rem; + } + + .lg\:-right-2\.5 { + right: -0.625rem; + } + + .lg\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .lg\:-left-2\.5 { + left: -0.625rem; + } + + .lg\:-top-3\.5 { + top: -0.875rem; + } + + .lg\:-right-3\.5 { + right: -0.875rem; + } + + .lg\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .lg\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .lg\:right-full { + right: 100%; + } + + .lg\:bottom-full { + bottom: 100%; + } + + .lg\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .lg\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .lg\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:ring-inset { + --tw-ring-inset: inset; + } + + .lg\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .lg\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .lg\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .lg\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .lg\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .lg\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .lg\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .lg\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .lg\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .lg\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .lg\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .lg\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .lg\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .lg\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .lg\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .lg\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .lg\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .lg\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .lg\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .lg\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .lg\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .lg\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .lg\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .lg\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .lg\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .lg\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .lg\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .lg\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .lg\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .lg\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .lg\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .lg\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .lg\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .lg\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .lg\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .lg\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .lg\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .lg\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .lg\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .lg\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .lg\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .lg\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .lg\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .lg\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .lg\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .lg\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .lg\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .lg\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .lg\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .lg\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .lg\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .lg\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .lg\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .lg\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .lg\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .lg\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .lg\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .lg\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .lg\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .lg\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .lg\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .lg\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .lg\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .lg\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .lg\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .lg\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .lg\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .lg\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .lg\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .lg\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .lg\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .lg\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .lg\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .lg\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .lg\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .lg\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .lg\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .lg\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .lg\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .lg\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .lg\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .lg\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .lg\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .lg\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .lg\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .lg\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .lg\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .lg\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .lg\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .lg\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .lg\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .lg\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .lg\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .lg\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .lg\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .lg\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .lg\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .lg\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .lg\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .lg\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .lg\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .lg\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .lg\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .lg\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .lg\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .lg\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .lg\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .lg\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .lg\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .lg\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .lg\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .lg\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .lg\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .lg\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .lg\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .lg\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .lg\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .lg\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .lg\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .lg\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .lg\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .lg\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .lg\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .lg\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .lg\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .lg\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .lg\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .lg\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .lg\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .lg\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .lg\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .lg\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .lg\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .lg\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .lg\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .lg\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .lg\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .lg\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .lg\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .lg\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .lg\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .lg\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .lg\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .lg\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .lg\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .lg\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .lg\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .lg\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .lg\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .lg\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .lg\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .lg\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .lg\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .lg\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .lg\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .lg\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .lg\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .lg\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .lg\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .lg\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .lg\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .lg\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .lg\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .lg\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .lg\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .lg\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .lg\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .lg\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .lg\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .lg\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .lg\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .lg\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .lg\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .lg\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .lg\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .lg\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .lg\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .lg\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .lg\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .lg\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .lg\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .lg\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .lg\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .lg\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .lg\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .lg\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .lg\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .lg\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .lg\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .lg\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .lg\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .lg\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .lg\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .lg\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .lg\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .lg\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .lg\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .lg\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .lg\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .lg\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .lg\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .lg\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .lg\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .lg\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .lg\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .lg\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .lg\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .lg\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .lg\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .lg\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .lg\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .lg\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .lg\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .lg\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .lg\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .lg\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .lg\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .lg\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .lg\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .lg\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .lg\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .lg\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .lg\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .lg\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .lg\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .lg\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .lg\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .lg\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .lg\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .lg\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .lg\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .lg\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .lg\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .lg\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .lg\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .lg\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .lg\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .lg\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .lg\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .lg\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .lg\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .lg\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .lg\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .lg\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .lg\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .lg\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .lg\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .lg\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .lg\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .lg\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .lg\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .lg\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .lg\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .lg\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .lg\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .lg\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .lg\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .lg\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .lg\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .lg\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .lg\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .lg\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .lg\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .lg\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .lg\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .lg\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .lg\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .lg\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .lg\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .lg\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .lg\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .lg\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .lg\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .lg\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .lg\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .lg\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .lg\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .lg\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .lg\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .lg\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .lg\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .lg\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .lg\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .lg\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .lg\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .lg\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .lg\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .lg\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .lg\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .lg\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .lg\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .lg\:ring-current { + --tw-ring-color: currentColor; + } + + .lg\:ring-transparent { + --tw-ring-color: transparent; + } + + .lg\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .lg\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .lg\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .lg\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .lg\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .lg\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .lg\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .lg\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .lg\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .lg\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .lg\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .lg\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .lg\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .lg\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .lg\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .lg\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .lg\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .lg\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .lg\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .lg\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .lg\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .lg\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .lg\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .lg\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .lg\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .lg\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .lg\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .lg\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .lg\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .lg\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .lg\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .lg\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .lg\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .lg\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .lg\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .lg\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .lg\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .lg\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .lg\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .lg\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .lg\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .lg\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .lg\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .lg\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .lg\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .lg\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .lg\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .lg\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .lg\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .lg\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .lg\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .lg\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .lg\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .lg\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .lg\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .lg\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .lg\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .lg\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .lg\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .lg\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .lg\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .lg\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .lg\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .lg\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .lg\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .lg\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .lg\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .lg\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .lg\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .lg\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .lg\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .lg\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .lg\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .lg\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .lg\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .lg\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .lg\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .lg\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .lg\:text-transparent { + color: transparent; + } + + .lg\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .lg\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .lg\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .lg\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .lg\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .lg\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:hover\:text-current:hover { + color: currentColor; + } + + .lg\:hover\:text-transparent:hover { + color: transparent; + } + + .lg\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus\:text-current:focus { + color: currentColor; + } + + .lg\:focus\:text-transparent:focus { + color: transparent; + } + + .lg\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .lg\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .lg\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .lg\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .lg\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .lg\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .lg\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .lg\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .lg\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .lg\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .lg\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .lg\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .lg\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .lg\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .lg\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .lg\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .lg\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .lg\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .lg\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .lg\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .lg\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .lg\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .lg\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .lg\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .lg\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .lg\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .lg\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .lg\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .lg\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .lg\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .lg\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .lg\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .lg\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .lg\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .lg\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .lg\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .lg\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .lg\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .lg\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .lg\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .lg\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .lg\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .lg\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .lg\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .lg\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .lg\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .lg\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .lg\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .lg\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .lg\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .lg\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .lg\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .lg\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .lg\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .lg\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .lg\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .lg\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .lg\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .lg\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .lg\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .lg\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .lg\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .lg\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .lg\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .lg\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .lg\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .lg\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .lg\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .lg\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .lg\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .lg\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .lg\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .lg\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .lg\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .lg\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .lg\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .lg\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .lg\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .lg\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .lg\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .lg\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .lg\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .lg\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .lg\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .lg\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .lg\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .lg\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .lg\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .lg\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .lg\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .lg\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .lg\:focus-within\:no-underline:focus-within { + 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\:ordinal, .lg\:slashed-zero, .lg\:lining-nums, .lg\:oldstyle-nums, .lg\:proportional-nums, .lg\:tabular-nums, .lg\:diagonal-fractions, .lg\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .lg\:normal-nums { + font-variant-numeric: normal; + } + + .lg\:ordinal { + --tw-ordinal: ordinal; + } + + .lg\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .lg\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .lg\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .lg\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .lg\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .lg\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .lg\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .lg\:tracking-tighter { + letter-spacing: -0.02em; + } + + .lg\:tracking-tight { + letter-spacing: -1px; + } + + .lg\:tracking-normal { + letter-spacing: 0em; + } + + .lg\:tracking-wide { + letter-spacing: 0.03em; + } + + .lg\:tracking-wider { + letter-spacing: 0.08em; + } + + .lg\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .lg\:w-1 { + width: 0.25rem; + } + + .lg\:w-2 { + width: 0.5rem; + } + + .lg\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .lg\:w-1\.5 { + width: 0.375rem; + } + + .lg\:w-2\.5 { + width: 0.625rem; + } + + .lg\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .lg\:gap-1 { + gap: 0.25rem; + } + + .lg\:gap-2 { + gap: 0.5rem; + } + + .lg\:gap-3 { + gap: 0.75rem; + } + + .lg\:gap-4 { + gap: 1rem; + } + + .lg\:gap-5 { + gap: 1.25rem; + } + + .lg\:gap-6 { + gap: 1.5rem; + } + + .lg\:gap-7 { + gap: 1.75rem; + } + + .lg\:gap-8 { + gap: 2rem; + } + + .lg\:gap-9 { + gap: 2.25rem; + } + + .lg\:gap-10 { + gap: 2.5rem; + } + + .lg\:gap-11 { + gap: 2.75rem; + } + + .lg\:gap-12 { + gap: 3rem; + } + + .lg\:gap-14 { + gap: 3.5rem; + } + + .lg\:gap-16 { + gap: 4rem; + } + + .lg\:gap-20 { + gap: 5rem; + } + + .lg\:gap-24 { + gap: 6rem; + } + + .lg\:gap-28 { + gap: 7rem; + } + + .lg\:gap-32 { + gap: 8rem; + } + + .lg\:gap-36 { + gap: 9rem; + } + + .lg\:gap-40 { + gap: 10rem; + } + + .lg\:gap-44 { + gap: 11rem; + } + + .lg\:gap-48 { + gap: 12rem; + } + + .lg\:gap-52 { + gap: 13rem; + } + + .lg\:gap-56 { + gap: 14rem; + } + + .lg\:gap-60 { + gap: 15rem; + } + + .lg\:gap-64 { + gap: 16rem; + } + + .lg\:gap-72 { + gap: 18rem; + } + + .lg\:gap-80 { + gap: 20rem; + } + + .lg\:gap-96 { + gap: 24rem; + } + + .lg\:gap-px { + gap: 1px; + } + + .lg\:gap-0\.5 { + gap: 0.125rem; + } + + .lg\:gap-1\.5 { + gap: 0.375rem; + } + + .lg\:gap-2\.5 { + gap: 0.625rem; + } + + .lg\:gap-3\.5 { + gap: 0.875rem; + } + + .lg\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .lg\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .lg\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .lg\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .lg\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .lg\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .lg\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .lg\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .lg\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .lg\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .lg\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .lg\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .lg\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .lg\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .lg\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .lg\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .lg\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .lg\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .lg\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .lg\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .lg\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .lg\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .lg\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .lg\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .lg\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .lg\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .lg\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .lg\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .lg\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .lg\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .lg\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .lg\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .lg\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .lg\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .lg\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .lg\:gap-y-0 { + row-gap: 0px; + } + + .lg\:gap-y-1 { + row-gap: 0.25rem; + } + + .lg\:gap-y-2 { + row-gap: 0.5rem; + } + + .lg\:gap-y-3 { + row-gap: 0.75rem; + } + + .lg\:gap-y-4 { + row-gap: 1rem; + } + + .lg\:gap-y-5 { + row-gap: 1.25rem; + } + + .lg\:gap-y-6 { + row-gap: 1.5rem; + } + + .lg\:gap-y-7 { + row-gap: 1.75rem; + } + + .lg\:gap-y-8 { + row-gap: 2rem; + } + + .lg\:gap-y-9 { + row-gap: 2.25rem; + } + + .lg\:gap-y-10 { + row-gap: 2.5rem; + } + + .lg\:gap-y-11 { + row-gap: 2.75rem; + } + + .lg\:gap-y-12 { + row-gap: 3rem; + } + + .lg\:gap-y-14 { + row-gap: 3.5rem; + } + + .lg\:gap-y-16 { + row-gap: 4rem; + } + + .lg\:gap-y-20 { + row-gap: 5rem; + } + + .lg\:gap-y-24 { + row-gap: 6rem; + } + + .lg\:gap-y-28 { + row-gap: 7rem; + } + + .lg\:gap-y-32 { + row-gap: 8rem; + } + + .lg\:gap-y-36 { + row-gap: 9rem; + } + + .lg\:gap-y-40 { + row-gap: 10rem; + } + + .lg\:gap-y-44 { + row-gap: 11rem; + } + + .lg\:gap-y-48 { + row-gap: 12rem; + } + + .lg\:gap-y-52 { + row-gap: 13rem; + } + + .lg\:gap-y-56 { + row-gap: 14rem; + } + + .lg\:gap-y-60 { + row-gap: 15rem; + } + + .lg\:gap-y-64 { + row-gap: 16rem; + } + + .lg\:gap-y-72 { + row-gap: 18rem; + } + + .lg\:gap-y-80 { + row-gap: 20rem; + } + + .lg\:gap-y-96 { + row-gap: 24rem; + } + + .lg\:gap-y-px { + row-gap: 1px; + } + + .lg\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .lg\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .lg\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .lg\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .lg\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .lg\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .lg\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .lg\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .lg\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .lg\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .lg\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:scale-x-0 { + --tw-scale-x: 0; + } + + .lg\:scale-x-50 { + --tw-scale-x: .5; + } + + .lg\:scale-x-75 { + --tw-scale-x: .75; + } + + .lg\:scale-x-90 { + --tw-scale-x: .9; + } + + .lg\:scale-x-95 { + --tw-scale-x: .95; + } + + .lg\:scale-x-100 { + --tw-scale-x: 1; + } + + .lg\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .lg\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .lg\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .lg\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .lg\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .lg\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .lg\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .lg\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .lg\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .lg\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .lg\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .lg\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .lg\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .lg\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .lg\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .lg\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .lg\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .lg\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .lg\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .lg\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .lg\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .lg\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .lg\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .lg\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .lg\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .lg\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .lg\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .lg\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .lg\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .lg\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .lg\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .lg\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .lg\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .lg\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .lg\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .lg\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .lg\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .lg\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .lg\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .lg\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .lg\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .lg\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .lg\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .lg\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .lg\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .lg\:rotate-0 { + --tw-rotate: 0deg; + } + + .lg\:rotate-1 { + --tw-rotate: 1deg; + } + + .lg\:rotate-2 { + --tw-rotate: 2deg; + } + + .lg\:rotate-3 { + --tw-rotate: 3deg; + } + + .lg\:rotate-6 { + --tw-rotate: 6deg; + } + + .lg\:rotate-12 { + --tw-rotate: 12deg; + } + + .lg\:rotate-45 { + --tw-rotate: 45deg; + } + + .lg\:rotate-90 { + --tw-rotate: 90deg; + } + + .lg\:rotate-180 { + --tw-rotate: 180deg; + } + + .lg\:-rotate-180 { + --tw-rotate: -180deg; + } + + .lg\:-rotate-90 { + --tw-rotate: -90deg; + } + + .lg\:-rotate-45 { + --tw-rotate: -45deg; + } + + .lg\:-rotate-12 { + --tw-rotate: -12deg; + } + + .lg\:-rotate-6 { + --tw-rotate: -6deg; + } + + .lg\:-rotate-3 { + --tw-rotate: -3deg; + } + + .lg\:-rotate-2 { + --tw-rotate: -2deg; + } + + .lg\:-rotate-1 { + --tw-rotate: -1deg; + } + + .lg\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .lg\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .lg\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .lg\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .lg\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .lg\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .lg\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .lg\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .lg\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .lg\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .lg\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .lg\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .lg\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .lg\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .lg\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .lg\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .lg\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .lg\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .lg\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .lg\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .lg\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .lg\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .lg\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .lg\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .lg\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .lg\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .lg\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .lg\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .lg\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .lg\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .lg\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .lg\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .lg\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .lg\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .lg\:translate-x-0 { + --tw-translate-x: 0px; + } + + .lg\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .lg\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .lg\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .lg\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .lg\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .lg\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .lg\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .lg\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .lg\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .lg\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .lg\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .lg\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .lg\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .lg\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .lg\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .lg\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .lg\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .lg\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .lg\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .lg\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .lg\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .lg\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .lg\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .lg\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .lg\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .lg\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .lg\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .lg\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .lg\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .lg\:translate-x-px { + --tw-translate-x: 1px; + } + + .lg\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .lg\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .lg\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .lg\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .lg\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .lg\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .lg\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .lg\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .lg\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .lg\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .lg\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .lg\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .lg\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .lg\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .lg\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .lg\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .lg\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .lg\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .lg\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .lg\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .lg\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .lg\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .lg\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .lg\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .lg\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .lg\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .lg\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .lg\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .lg\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .lg\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .lg\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .lg\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .lg\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .lg\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .lg\:-translate-x-px { + --tw-translate-x: -1px; + } + + .lg\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .lg\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .lg\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .lg\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .lg\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .lg\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .lg\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .lg\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .lg\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .lg\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .lg\:translate-x-full { + --tw-translate-x: 100%; + } + + .lg\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .lg\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .lg\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .lg\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .lg\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .lg\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .lg\:-translate-x-full { + --tw-translate-x: -100%; + } + + .lg\:translate-y-0 { + --tw-translate-y: 0px; + } + + .lg\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .lg\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .lg\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .lg\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .lg\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .lg\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .lg\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .lg\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .lg\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .lg\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .lg\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .lg\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .lg\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .lg\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .lg\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .lg\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .lg\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .lg\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .lg\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .lg\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .lg\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .lg\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .lg\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .lg\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .lg\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .lg\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .lg\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .lg\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .lg\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .lg\:translate-y-px { + --tw-translate-y: 1px; + } + + .lg\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .lg\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .lg\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .lg\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .lg\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .lg\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .lg\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .lg\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .lg\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .lg\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .lg\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .lg\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .lg\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .lg\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .lg\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .lg\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .lg\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .lg\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .lg\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .lg\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .lg\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .lg\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .lg\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .lg\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .lg\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .lg\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .lg\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .lg\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .lg\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .lg\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .lg\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .lg\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .lg\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .lg\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .lg\:-translate-y-px { + --tw-translate-y: -1px; + } + + .lg\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .lg\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .lg\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .lg\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .lg\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .lg\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .lg\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .lg\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .lg\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .lg\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .lg\:translate-y-full { + --tw-translate-y: 100%; + } + + .lg\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .lg\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .lg\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .lg\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .lg\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .lg\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .lg\:-translate-y-full { + --tw-translate-y: -100%; + } + + .lg\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .lg\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .lg\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .lg\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .lg\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .lg\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .lg\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .lg\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .lg\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .lg\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .lg\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .lg\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .lg\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .lg\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .lg\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .lg\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .lg\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .lg\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .lg\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .lg\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .lg\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .lg\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .lg\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .lg\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .lg\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .lg\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .lg\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .lg\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .lg\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .lg\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .lg\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .lg\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .lg\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .lg\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .lg\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .lg\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .lg\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .lg\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .lg\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .lg\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .lg\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .lg\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .lg\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .lg\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .lg\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .lg\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .lg\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .lg\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .lg\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .lg\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .lg\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .lg\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .lg\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .lg\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .lg\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .lg\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .lg\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .lg\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .lg\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .lg\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .lg\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .lg\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .lg\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .lg\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .lg\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .lg\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .lg\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .lg\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .lg\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .lg\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .lg\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .lg\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .lg\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .lg\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .lg\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .lg\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .lg\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .lg\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .lg\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .lg\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .lg\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .lg\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .lg\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .lg\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .lg\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .lg\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .lg\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .lg\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .lg\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .lg\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .lg\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .lg\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .lg\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .lg\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .lg\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .lg\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .lg\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .lg\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .lg\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .lg\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .lg\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .lg\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .lg\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .lg\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .lg\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .lg\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .lg\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .lg\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .lg\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .lg\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .lg\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .lg\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .lg\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .lg\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .lg\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .lg\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .lg\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .lg\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .lg\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .lg\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .lg\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .lg\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .lg\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .lg\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .lg\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .lg\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .lg\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .lg\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .lg\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .lg\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .lg\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .lg\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .lg\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .lg\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .lg\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .lg\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .lg\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .lg\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .lg\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .lg\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .lg\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .lg\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .lg\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .lg\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .lg\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .lg\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .lg\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .lg\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .lg\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .lg\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .lg\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .lg\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .lg\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .lg\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .lg\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .lg\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .lg\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .lg\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .lg\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .lg\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .lg\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .lg\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .lg\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .lg\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .lg\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .lg\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .lg\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .lg\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .lg\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .lg\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .lg\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .lg\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .lg\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .lg\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .lg\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .lg\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .lg\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .lg\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .lg\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .lg\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .lg\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .lg\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .lg\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .lg\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .lg\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .lg\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .lg\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .lg\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .lg\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .lg\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .lg\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .lg\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .lg\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .lg\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .lg\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .lg\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .lg\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .lg\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .lg\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .lg\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .lg\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .lg\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .lg\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .lg\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .lg\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .lg\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .lg\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .lg\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .lg\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .lg\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .lg\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .lg\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .lg\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .lg\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .lg\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .lg\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .lg\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .lg\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .lg\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .lg\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .lg\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .lg\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .lg\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .lg\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .lg\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .lg\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .lg\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .lg\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .lg\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .lg\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .lg\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .lg\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .lg\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .lg\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .lg\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .lg\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .lg\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .lg\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .lg\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .lg\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .lg\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .lg\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .lg\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .lg\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .lg\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .lg\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .lg\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .lg\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .lg\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .lg\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .lg\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .lg\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .lg\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .lg\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .lg\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .lg\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .lg\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .lg\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .lg\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .lg\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .lg\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .lg\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .lg\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .lg\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .lg\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .lg\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .lg\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .lg\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .lg\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .lg\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .lg\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .lg\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .lg\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .lg\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .lg\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .lg\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .lg\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .lg\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .lg\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .lg\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .lg\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .lg\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .lg\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .lg\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .lg\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .lg\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .lg\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .lg\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .lg\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .lg\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .lg\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .lg\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .lg\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .lg\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .lg\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .lg\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .lg\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .lg\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .lg\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .lg\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .lg\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .lg\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .lg\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .lg\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .lg\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .lg\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .lg\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .lg\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .lg\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .lg\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .lg\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .lg\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .lg\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .lg\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .lg\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .lg\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .lg\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .lg\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .lg\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .lg\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .lg\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .lg\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .lg\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .lg\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .lg\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .lg\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .lg\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .lg\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .lg\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .lg\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .lg\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .lg\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .lg\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .lg\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .lg\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .lg\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .lg\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .lg\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .lg\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .lg\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .lg\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .lg\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .lg\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .lg\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .lg\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .lg\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .lg\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .lg\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .lg\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .lg\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .lg\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .lg\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .lg\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .lg\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .lg\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .lg\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .lg\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .lg\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .lg\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .lg\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .lg\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .lg\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .lg\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .lg\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .lg\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .lg\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .lg\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .lg\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .lg\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .lg\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .lg\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .lg\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .lg\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .lg\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .lg\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .lg\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .lg\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .lg\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .lg\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .lg\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .lg\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .lg\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .lg\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .lg\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .lg\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .lg\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .lg\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .lg\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .lg\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .lg\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .lg\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .lg\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .lg\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .lg\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .lg\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .lg\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .lg\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .lg\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .lg\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .lg\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .lg\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .lg\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .lg\:transition-none { + transition-property: none; + } + + .lg\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .lg\:ease-linear { + transition-timing-function: linear; + } + + .lg\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .lg\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .lg\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .lg\:duration-75 { + transition-duration: 75ms; + } + + .lg\:duration-100 { + transition-duration: 100ms; + } + + .lg\:duration-150 { + transition-duration: 150ms; + } + + .lg\:duration-200 { + transition-duration: 200ms; + } + + .lg\:duration-300 { + transition-duration: 300ms; + } + + .lg\:duration-500 { + transition-duration: 500ms; + } + + .lg\:duration-700 { + transition-duration: 700ms; + } + + .lg\:duration-1000 { + transition-duration: 1000ms; + } + + .lg\:delay-75 { + transition-delay: 75ms; + } + + .lg\:delay-100 { + transition-delay: 100ms; + } + + .lg\:delay-150 { + transition-delay: 150ms; + } + + .lg\:delay-200 { + transition-delay: 200ms; + } + + .lg\:delay-300 { + transition-delay: 300ms; + } + + .lg\:delay-500 { + transition-delay: 500ms; + } + + .lg\:delay-700 { + transition-delay: 700ms; + } + + .lg\:delay-1000 { + transition-delay: 1000ms; + } + + .lg\:animate-none { + -webkit-animation: none; + animation: none; + } + + .lg\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .lg\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .lg\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .lg\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@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; + } + } + + @media (min-width: 1536px) { + .xl\:container { + max-width: 1536px; + } + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .xl\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .xl\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .xl\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-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-within\:sr-only:focus-within { + 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-within\:not-sr-only:focus-within { + 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-clip-border { + background-clip: border-box; + } + + .xl\:bg-clip-padding { + background-clip: padding-box; + } + + .xl\:bg-clip-content { + background-clip: content-box; + } + + .xl\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .xl\:bg-current { + background-color: currentColor; + } + + .xl\:bg-transparent { + background-color: transparent; + } + + .xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .xl\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .xl\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-current:hover { + background-color: currentColor; + } + + .xl\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-current:focus { + background-color: currentColor; + } + + .xl\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .xl\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .xl\:bg-none { + background-image: none; + } + + .xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:to-current { + --tw-gradient-to: currentColor; + } + + .xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .xl\:to-black { + --tw-gradient-to: #000; + } + + .xl\:to-white { + --tw-gradient-to: #fff; + } + + .xl\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .xl\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .xl\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .xl\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .xl\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .xl\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .xl\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .xl\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .xl\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .xl\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .xl\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .xl\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .xl\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .xl\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .xl\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .xl\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .xl\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .xl\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .xl\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .xl\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .xl\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .xl\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .xl\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .xl\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .xl\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .xl\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .xl\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .xl\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .xl\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .xl\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .xl\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .xl\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .xl\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .xl\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .xl\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .xl\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .xl\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .xl\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .xl\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .xl\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .xl\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .xl\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .xl\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .xl\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .xl\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .xl\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .xl\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .xl\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .xl\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .xl\:to-green-900 { + --tw-gradient-to: #156633; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .xl\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .xl\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .xl\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .xl\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .xl\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .xl\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .xl\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .xl\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .xl\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .xl\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .xl\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .xl\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .xl\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .xl\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .xl\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .xl\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .xl\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .xl\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .xl\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .xl\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .xl\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .xl\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .xl\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .xl\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .xl\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .xl\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .xl\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .xl\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .xl\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .xl\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .xl\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .xl\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .xl\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .xl\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .xl\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .xl\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .xl\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .xl\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .xl\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .xl\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .xl\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .xl\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .xl\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .xl\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .xl\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .xl\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .xl\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .xl\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .xl\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .xl\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .xl\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .xl\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .xl\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .xl\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .xl\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .xl\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .xl\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .xl\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .xl\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .xl\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .xl\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .xl\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .xl\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .xl\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .xl\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .xl\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .xl\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .xl\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .xl\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .xl\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .xl\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .xl\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .xl\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .xl\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .xl\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .xl\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .xl\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .xl\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .xl\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .xl\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .xl\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .xl\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .xl\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .xl\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .xl\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .xl\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .xl\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .xl\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .xl\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .xl\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .xl\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .xl\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .xl\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .xl\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .xl\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .xl\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .xl\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .xl\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .xl\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .xl\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .xl\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .xl\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .xl\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .xl\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .xl\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .xl\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .xl\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .xl\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .xl\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .xl\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .xl\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .xl\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .xl\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .xl\:focus\:bg-opacity-100:focus { + --tw-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-current { + border-color: currentColor; + } + + .xl\:border-transparent { + border-color: transparent; + } + + .xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .xl\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:hover\:border-current:hover { + border-color: currentColor; + } + + .xl\:hover\:border-transparent:hover { + border-color: transparent; + } + + .xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:focus\:border-current:focus { + border-color: currentColor; + } + + .xl\:focus\:border-transparent:focus { + border-color: transparent; + } + + .xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .xl\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .xl\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .xl\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .xl\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .xl\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .xl\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .xl\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .xl\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .xl\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .xl\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .xl\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .xl\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .xl\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .xl\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .xl\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .xl\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .xl\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .xl\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .xl\:rounded-none { + border-radius: 0; + } + + .xl\:rounded-sm { + border-radius: 0.125rem; + } + + .xl\:rounded { + border-radius: 0.25rem; + } + + .xl\:rounded-md { + border-radius: 0.375rem; + } + + .xl\:rounded-lg { + border-radius: 0.5rem; + } + + .xl\:rounded-xl { + border-radius: 0.675rem; + } + + .xl\:rounded-2xl { + border-radius: 0.75rem; + } + + .xl\:rounded-3xl { + border-radius: 0.875rem; + } + + .xl\:rounded-4xl { + border-radius: 1rem; + } + + .xl\:rounded-5xl { + border-radius: 1.25rem; + } + + .xl\:rounded-6xl { + border-radius: 1.375rem; + } + + .xl\:rounded-7xl { + border-radius: 1.5rem; + } + + .xl\:rounded-8xl { + border-radius: 2rem; + } + + .xl\:rounded-9xl { + border-radius: 2.25rem; + } + + .xl\:rounded-10xl { + border-radius: 2.5rem; + } + + .xl\:rounded-11xl { + 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: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .xl\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .xl\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .xl\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .xl\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .xl\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .xl\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .xl\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .xl\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .xl\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .xl\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .xl\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .xl\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .xl\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .xl\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .xl\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .xl\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .xl\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .xl\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .xl\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .xl\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .xl\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .xl\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .xl\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .xl\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .xl\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .xl\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .xl\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .xl\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .xl\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .xl\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .xl\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .xl\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .xl\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .xl\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .xl\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .xl\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .xl\:rounded-l-11xl { + 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: 0.125rem; + } + + .xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .xl\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .xl\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .xl\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .xl\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .xl\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .xl\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .xl\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .xl\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .xl\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .xl\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .xl\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .xl\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .xl\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .xl\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .xl\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .xl\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .xl\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .xl\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .xl\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .xl\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .xl\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .xl\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .xl\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .xl\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .xl\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .xl\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .xl\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .xl\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .xl\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .xl\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .xl\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .xl\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .xl\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .xl\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .xl\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .xl\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .xl\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .xl\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .xl\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .xl\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .xl\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .xl\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .xl\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .xl\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .xl\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .xl\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .xl\:rounded-bl-11xl { + 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 { + 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\:contents { + display: contents; + } + + .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-nowrap { + flex-wrap: nowrap; + } + + .xl\:place-items-auto { + place-items: auto; + } + + .xl\:place-items-start { + place-items: start; + } + + .xl\:place-items-end { + place-items: end; + } + + .xl\:place-items-center { + place-items: center; + } + + .xl\:place-items-stretch { + place-items: stretch; + } + + .xl\:place-content-center { + place-content: center; + } + + .xl\:place-content-start { + place-content: start; + } + + .xl\:place-content-end { + place-content: end; + } + + .xl\:place-content-between { + place-content: space-between; + } + + .xl\:place-content-around { + place-content: space-around; + } + + .xl\:place-content-evenly { + place-content: space-evenly; + } + + .xl\:place-content-stretch { + place-content: stretch; + } + + .xl\:place-self-auto { + place-self: auto; + } + + .xl\:place-self-start { + place-self: start; + } + + .xl\:place-self-end { + place-self: end; + } + + .xl\:place-self-center { + place-self: center; + } + + .xl\:place-self-stretch { + place-self: stretch; + } + + .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\: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\:content-evenly { + align-content: space-evenly; + } + + .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-items-auto { + justify-items: auto; + } + + .xl\:justify-items-start { + justify-items: start; + } + + .xl\:justify-items-end { + justify-items: end; + } + + .xl\:justify-items-center { + justify-items: center; + } + + .xl\:justify-items-stretch { + justify-items: 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\:justify-self-auto { + justify-self: auto; + } + + .xl\:justify-self-start { + justify-self: start; + } + + .xl\:justify-self-end { + justify-self: end; + } + + .xl\:justify-self-center { + justify-self: center; + } + + .xl\:justify-self-stretch { + justify-self: stretch; + } + + .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\:clear-left { + clear: left; + } + + .xl\:clear-right { + clear: right; + } + + .xl\:clear-both { + clear: both; + } + + .xl\:clear-none { + clear: none; + } + + .xl\:font-body { + font-family: Inter, ui-sans-serif, 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-heading { + font-family: Inter, ui-sans-serif, 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-sans { + font-family: "Inter", ui-sans-serif, 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: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, 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\:h-0 { + height: 0px; + } + + .xl\:h-1 { + height: 0.25rem; + } + + .xl\:h-2 { + height: 0.5rem; + } + + .xl\:h-3 { + height: 0.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-14 { + height: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:h-1\.5 { + height: 0.375rem; + } + + .xl\:h-2\.5 { + height: 0.625rem; + } + + .xl\:h-3\.5 { + height: 0.875rem; + } + + .xl\:h-full { + height: 100%; + } + + .xl\:h-screen { + height: 100vh; + } + + .xl\:text-xxs { + font-size: 0.6875rem; + } + + .xl\:text-xs { + font-size: 0.75rem; + } + + .xl\:text-sm { + font-size: 0.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: 3.75rem; + } + + .xl\:text-7xl { + font-size: 4.5rem; + } + + .xl\:text-8xl { + font-size: 6rem; + } + + .xl\:text-9xl { + font-size: 8rem; + } + + .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: 0px; + } + + .xl\:m-1 { + margin: 0.25rem; + } + + .xl\:m-2 { + margin: 0.5rem; + } + + .xl\:m-3 { + margin: 0.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-14 { + margin: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:m-1\.5 { + margin: 0.375rem; + } + + .xl\:m-2\.5 { + margin: 0.625rem; + } + + .xl\:m-3\.5 { + margin: 0.875rem; + } + + .xl\:-m-0 { + margin: 0px; + } + + .xl\:-m-1 { + margin: -0.25rem; + } + + .xl\:-m-2 { + margin: -0.5rem; + } + + .xl\:-m-3 { + margin: -0.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-14 { + margin: -3.5rem; + } + + .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: -0.125rem; + } + + .xl\:-m-1\.5 { + margin: -0.375rem; + } + + .xl\:-m-2\.5 { + margin: -0.625rem; + } + + .xl\:-m-3\.5 { + margin: -0.875rem; + } + + .xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.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-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .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: 0.125rem; + margin-bottom: 0.125rem; + } + + .xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.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-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .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: -0.125rem; + margin-bottom: -0.125rem; + } + + .xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .xl\:mt-0 { + margin-top: 0px; + } + + .xl\:mr-0 { + margin-right: 0px; + } + + .xl\:mb-0 { + margin-bottom: 0px; + } + + .xl\:ml-0 { + margin-left: 0px; + } + + .xl\:mt-1 { + margin-top: 0.25rem; + } + + .xl\:mr-1 { + margin-right: 0.25rem; + } + + .xl\:mb-1 { + margin-bottom: 0.25rem; + } + + .xl\:ml-1 { + margin-left: 0.25rem; + } + + .xl\:mt-2 { + margin-top: 0.5rem; + } + + .xl\:mr-2 { + margin-right: 0.5rem; + } + + .xl\:mb-2 { + margin-bottom: 0.5rem; + } + + .xl\:ml-2 { + margin-left: 0.5rem; + } + + .xl\:mt-3 { + margin-top: 0.75rem; + } + + .xl\:mr-3 { + margin-right: 0.75rem; + } + + .xl\:mb-3 { + margin-bottom: 0.75rem; + } + + .xl\:ml-3 { + margin-left: 0.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-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-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: 0.125rem; + } + + .xl\:mr-0\.5 { + margin-right: 0.125rem; + } + + .xl\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .xl\:mt-1\.5 { + margin-top: 0.375rem; + } + + .xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .xl\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .xl\:mt-2\.5 { + margin-top: 0.625rem; + } + + .xl\:mr-2\.5 { + margin-right: 0.625rem; + } + + .xl\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .xl\:mt-3\.5 { + margin-top: 0.875rem; + } + + .xl\:mr-3\.5 { + margin-right: 0.875rem; + } + + .xl\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .xl\:-mt-0 { + margin-top: 0px; + } + + .xl\:-mr-0 { + margin-right: 0px; + } + + .xl\:-mb-0 { + margin-bottom: 0px; + } + + .xl\:-ml-0 { + margin-left: 0px; + } + + .xl\:-mt-1 { + margin-top: -0.25rem; + } + + .xl\:-mr-1 { + margin-right: -0.25rem; + } + + .xl\:-mb-1 { + margin-bottom: -0.25rem; + } + + .xl\:-ml-1 { + margin-left: -0.25rem; + } + + .xl\:-mt-2 { + margin-top: -0.5rem; + } + + .xl\:-mr-2 { + margin-right: -0.5rem; + } + + .xl\:-mb-2 { + margin-bottom: -0.5rem; + } + + .xl\:-ml-2 { + margin-left: -0.5rem; + } + + .xl\:-mt-3 { + margin-top: -0.75rem; + } + + .xl\:-mr-3 { + margin-right: -0.75rem; + } + + .xl\:-mb-3 { + margin-bottom: -0.75rem; + } + + .xl\:-ml-3 { + margin-left: -0.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-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-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: -0.125rem; + } + + .xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .xl\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .xl\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .xl\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .xl\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .xl\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .xl\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .xl\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .xl\:max-h-full { + max-height: 100%; + } + + .xl\:max-h-screen { + max-height: 100vh; + } + + .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 { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .xl\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .xl\:max-w-prose { + max-width: 65ch; + } + + .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\: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-5 { + opacity: 0.05; + } + + .xl\:opacity-10 { + opacity: 0.1; + } + + .xl\:opacity-20 { + opacity: 0.2; + } + + .xl\:opacity-25 { + opacity: 0.25; + } + + .xl\:opacity-30 { + opacity: 0.3; + } + + .xl\:opacity-40 { + opacity: 0.4; + } + + .xl\:opacity-50 { + opacity: 0.5; + } + + .xl\:opacity-60 { + opacity: 0.6; + } + + .xl\:opacity-70 { + opacity: 0.7; + } + + .xl\:opacity-75 { + opacity: 0.75; + } + + .xl\:opacity-80 { + opacity: 0.8; + } + + .xl\:opacity-90 { + opacity: 0.9; + } + + .xl\:opacity-95 { + opacity: 0.95; + } + + .xl\:opacity-100 { + opacity: 1; + } + + .group:hover .xl\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .xl\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .xl\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .xl\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .xl\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .xl\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .xl\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .xl\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .xl\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .xl\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .xl\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .xl\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .xl\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .xl\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .xl\:group-hover\:opacity-100 { + opacity: 1; + } + + .xl\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .xl\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .xl\:hover\:opacity-0:hover { + opacity: 0; + } + + .xl\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .xl\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .xl\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .xl\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .xl\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .xl\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .xl\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .xl\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .xl\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .xl\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .xl\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .xl\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .xl\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .xl\:hover\:opacity-100:hover { + opacity: 1; + } + + .xl\:focus\:opacity-0:focus { + opacity: 0; + } + + .xl\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .xl\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .xl\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .xl\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .xl\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .xl\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .xl\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .xl\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .xl\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .xl\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .xl\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .xl\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .xl\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .xl\:focus\:opacity-100:focus { + opacity: 1; + } + + .xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .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\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .xl\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .xl\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .xl\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .xl\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .xl\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .xl\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .xl\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .xl\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .xl\:p-0 { + padding: 0px; + } + + .xl\:p-1 { + padding: 0.25rem; + } + + .xl\:p-2 { + padding: 0.5rem; + } + + .xl\:p-3 { + padding: 0.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-14 { + padding: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:p-1\.5 { + padding: 0.375rem; + } + + .xl\:p-2\.5 { + padding: 0.625rem; + } + + .xl\:p-3\.5 { + padding: 0.875rem; + } + + .xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .xl\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.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-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .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: 0.125rem; + padding-bottom: 0.125rem; + } + + .xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .xl\:pt-0 { + padding-top: 0px; + } + + .xl\:pr-0 { + padding-right: 0px; + } + + .xl\:pb-0 { + padding-bottom: 0px; + } + + .xl\:pl-0 { + padding-left: 0px; + } + + .xl\:pt-1 { + padding-top: 0.25rem; + } + + .xl\:pr-1 { + padding-right: 0.25rem; + } + + .xl\:pb-1 { + padding-bottom: 0.25rem; + } + + .xl\:pl-1 { + padding-left: 0.25rem; + } + + .xl\:pt-2 { + padding-top: 0.5rem; + } + + .xl\:pr-2 { + padding-right: 0.5rem; + } + + .xl\:pb-2 { + padding-bottom: 0.5rem; + } + + .xl\:pl-2 { + padding-left: 0.5rem; + } + + .xl\:pt-3 { + padding-top: 0.75rem; + } + + .xl\:pr-3 { + padding-right: 0.75rem; + } + + .xl\:pb-3 { + padding-bottom: 0.75rem; + } + + .xl\:pl-3 { + padding-left: 0.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-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-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: 0.125rem; + } + + .xl\:pr-0\.5 { + padding-right: 0.125rem; + } + + .xl\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .xl\:pl-0\.5 { + padding-left: 0.125rem; + } + + .xl\:pt-1\.5 { + padding-top: 0.375rem; + } + + .xl\:pr-1\.5 { + padding-right: 0.375rem; + } + + .xl\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .xl\:pl-1\.5 { + padding-left: 0.375rem; + } + + .xl\:pt-2\.5 { + padding-top: 0.625rem; + } + + .xl\:pr-2\.5 { + padding-right: 0.625rem; + } + + .xl\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .xl\:pl-2\.5 { + padding-left: 0.625rem; + } + + .xl\:pt-3\.5 { + padding-top: 0.875rem; + } + + .xl\:pr-3\.5 { + padding-right: 0.875rem; + } + + .xl\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .xl\:pl-3\.5 { + padding-left: 0.875rem; + } + + .xl\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .xl\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .xl\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .xl\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .xl\:placeholder-current::placeholder { + color: currentColor; + } + + .xl\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .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-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .xl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .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-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .xl\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .xl\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .xl\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .xl\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .xl\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .xl\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .xl\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .xl\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .xl\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .xl\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .xl\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-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: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.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-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .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-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .xl\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .xl\:inset-x-0 { + right: 0px; + left: 0px; + } + + .xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .xl\:inset-x-3 { + right: 0.75rem; + left: 0.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-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .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: 0.125rem; + bottom: 0.125rem; + } + + .xl\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .xl\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .xl\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .xl\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .xl\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .xl\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .xl\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .xl\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .xl\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .xl\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .xl\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .xl\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .xl\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .xl\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .xl\:-inset-x-3 { + right: -0.75rem; + left: -0.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-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .xl\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .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-px { + top: -1px; + bottom: -1px; + } + + .xl\:-inset-x-px { + right: -1px; + left: -1px; + } + + .xl\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .xl\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .xl\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .xl\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .xl\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .xl\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .xl\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.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-full { + top: 100%; + bottom: 100%; + } + + .xl\:inset-x-full { + right: 100%; + left: 100%; + } + + .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-full { + top: -100%; + bottom: -100%; + } + + .xl\:-inset-x-full { + right: -100%; + left: -100%; + } + + .xl\:top-0 { + top: 0px; + } + + .xl\:right-0 { + right: 0px; + } + + .xl\:bottom-0 { + bottom: 0px; + } + + .xl\:left-0 { + left: 0px; + } + + .xl\:top-1 { + top: 0.25rem; + } + + .xl\:right-1 { + right: 0.25rem; + } + + .xl\:bottom-1 { + bottom: 0.25rem; + } + + .xl\:left-1 { + left: 0.25rem; + } + + .xl\:top-2 { + top: 0.5rem; + } + + .xl\:right-2 { + right: 0.5rem; + } + + .xl\:bottom-2 { + bottom: 0.5rem; + } + + .xl\:left-2 { + left: 0.5rem; + } + + .xl\:top-3 { + top: 0.75rem; + } + + .xl\:right-3 { + right: 0.75rem; + } + + .xl\:bottom-3 { + bottom: 0.75rem; + } + + .xl\:left-3 { + left: 0.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-14 { + top: 3.5rem; + } + + .xl\:right-14 { + right: 3.5rem; + } + + .xl\:bottom-14 { + bottom: 3.5rem; + } + + .xl\:left-14 { + left: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:right-0\.5 { + right: 0.125rem; + } + + .xl\:bottom-0\.5 { + bottom: 0.125rem; + } + + .xl\:left-0\.5 { + left: 0.125rem; + } + + .xl\:top-1\.5 { + top: 0.375rem; + } + + .xl\:right-1\.5 { + right: 0.375rem; + } + + .xl\:bottom-1\.5 { + bottom: 0.375rem; + } + + .xl\:left-1\.5 { + left: 0.375rem; + } + + .xl\:top-2\.5 { + top: 0.625rem; + } + + .xl\:right-2\.5 { + right: 0.625rem; + } + + .xl\:bottom-2\.5 { + bottom: 0.625rem; + } + + .xl\:left-2\.5 { + left: 0.625rem; + } + + .xl\:top-3\.5 { + top: 0.875rem; + } + + .xl\:right-3\.5 { + right: 0.875rem; + } + + .xl\:bottom-3\.5 { + bottom: 0.875rem; + } + + .xl\:left-3\.5 { + left: 0.875rem; + } + + .xl\:-top-0 { + top: 0px; + } + + .xl\:-right-0 { + right: 0px; + } + + .xl\:-bottom-0 { + bottom: 0px; + } + + .xl\:-left-0 { + left: 0px; + } + + .xl\:-top-1 { + top: -0.25rem; + } + + .xl\:-right-1 { + right: -0.25rem; + } + + .xl\:-bottom-1 { + bottom: -0.25rem; + } + + .xl\:-left-1 { + left: -0.25rem; + } + + .xl\:-top-2 { + top: -0.5rem; + } + + .xl\:-right-2 { + right: -0.5rem; + } + + .xl\:-bottom-2 { + bottom: -0.5rem; + } + + .xl\:-left-2 { + left: -0.5rem; + } + + .xl\:-top-3 { + top: -0.75rem; + } + + .xl\:-right-3 { + right: -0.75rem; + } + + .xl\:-bottom-3 { + bottom: -0.75rem; + } + + .xl\:-left-3 { + left: -0.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-14 { + top: -3.5rem; + } + + .xl\:-right-14 { + right: -3.5rem; + } + + .xl\:-bottom-14 { + bottom: -3.5rem; + } + + .xl\:-left-14 { + left: -3.5rem; + } + + .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-px { + top: -1px; + } + + .xl\:-right-px { + right: -1px; + } + + .xl\:-bottom-px { + bottom: -1px; + } + + .xl\:-left-px { + left: -1px; + } + + .xl\:-top-0\.5 { + top: -0.125rem; + } + + .xl\:-right-0\.5 { + right: -0.125rem; + } + + .xl\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .xl\:-left-0\.5 { + left: -0.125rem; + } + + .xl\:-top-1\.5 { + top: -0.375rem; + } + + .xl\:-right-1\.5 { + right: -0.375rem; + } + + .xl\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .xl\:-left-1\.5 { + left: -0.375rem; + } + + .xl\:-top-2\.5 { + top: -0.625rem; + } + + .xl\:-right-2\.5 { + right: -0.625rem; + } + + .xl\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .xl\:-left-2\.5 { + left: -0.625rem; + } + + .xl\:-top-3\.5 { + top: -0.875rem; + } + + .xl\:-right-3\.5 { + right: -0.875rem; + } + + .xl\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .xl\:-left-3\.5 { + left: -0.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-full { + top: 100%; + } + + .xl\:right-full { + right: 100%; + } + + .xl\:bottom-full { + bottom: 100%; + } + + .xl\:left-full { + left: 100%; + } + + .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-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-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:ring-inset { + --tw-ring-inset: inset; + } + + .xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .xl\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .xl\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .xl\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .xl\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .xl\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .xl\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .xl\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .xl\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .xl\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .xl\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .xl\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .xl\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .xl\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .xl\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .xl\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .xl\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .xl\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .xl\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .xl\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .xl\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .xl\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .xl\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .xl\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .xl\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .xl\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .xl\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .xl\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .xl\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .xl\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .xl\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .xl\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .xl\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .xl\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .xl\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .xl\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .xl\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .xl\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .xl\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .xl\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .xl\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .xl\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .xl\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .xl\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .xl\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .xl\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .xl\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .xl\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .xl\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .xl\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .xl\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .xl\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .xl\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .xl\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .xl\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .xl\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .xl\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .xl\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .xl\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .xl\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .xl\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .xl\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .xl\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .xl\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .xl\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .xl\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .xl\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .xl\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .xl\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .xl\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .xl\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .xl\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .xl\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .xl\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .xl\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .xl\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .xl\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .xl\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .xl\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .xl\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .xl\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .xl\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .xl\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .xl\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .xl\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .xl\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .xl\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .xl\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .xl\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .xl\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .xl\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .xl\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .xl\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .xl\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .xl\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .xl\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .xl\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .xl\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .xl\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .xl\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .xl\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .xl\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .xl\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .xl\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .xl\:ring-current { + --tw-ring-color: currentColor; + } + + .xl\:ring-transparent { + --tw-ring-color: transparent; + } + + .xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .xl\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .xl\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .xl\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .xl\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .xl\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .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-current { + color: currentColor; + } + + .xl\:text-transparent { + color: transparent; + } + + .xl\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .xl\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .xl\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .xl\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .xl\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .xl\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:hover\:text-current:hover { + color: currentColor; + } + + .xl\:hover\:text-transparent:hover { + color: transparent; + } + + .xl\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus\:text-current:focus { + color: currentColor; + } + + .xl\:focus\:text-transparent:focus { + color: transparent; + } + + .xl\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .xl\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .xl\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .xl\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .xl\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .xl\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .xl\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .xl\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .xl\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .xl\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .xl\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .xl\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .xl\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .xl\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .xl\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .xl\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .xl\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .xl\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .xl\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .xl\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .xl\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .xl\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .xl\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .xl\:overflow-clip { + text-overflow: clip; + } + + .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; + } + + .xl\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .xl\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .xl\:focus-within\:no-underline:focus-within { + 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\:ordinal, .xl\:slashed-zero, .xl\:lining-nums, .xl\:oldstyle-nums, .xl\:proportional-nums, .xl\:tabular-nums, .xl\:diagonal-fractions, .xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .xl\:normal-nums { + font-variant-numeric: normal; + } + + .xl\:ordinal { + --tw-ordinal: ordinal; + } + + .xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .xl\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .xl\:tracking-tighter { + letter-spacing: -0.02em; + } + + .xl\:tracking-tight { + letter-spacing: -1px; + } + + .xl\:tracking-normal { + letter-spacing: 0em; + } + + .xl\:tracking-wide { + letter-spacing: 0.03em; + } + + .xl\:tracking-wider { + letter-spacing: 0.08em; + } + + .xl\:tracking-widest { + letter-spacing: 0.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-nowrap { + 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\:w-0 { + width: 0px; + } + + .xl\:w-1 { + width: 0.25rem; + } + + .xl\:w-2 { + width: 0.5rem; + } + + .xl\:w-3 { + width: 0.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-14 { + width: 3.5rem; + } + + .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: 0.125rem; + } + + .xl\:w-1\.5 { + width: 0.375rem; + } + + .xl\:w-2\.5 { + width: 0.625rem; + } + + .xl\:w-3\.5 { + width: 0.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\: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 { + gap: 0px; + } + + .xl\:gap-1 { + gap: 0.25rem; + } + + .xl\:gap-2 { + gap: 0.5rem; + } + + .xl\:gap-3 { + gap: 0.75rem; + } + + .xl\:gap-4 { + gap: 1rem; + } + + .xl\:gap-5 { + gap: 1.25rem; + } + + .xl\:gap-6 { + gap: 1.5rem; + } + + .xl\:gap-7 { + gap: 1.75rem; + } + + .xl\:gap-8 { + gap: 2rem; + } + + .xl\:gap-9 { + gap: 2.25rem; + } + + .xl\:gap-10 { + gap: 2.5rem; + } + + .xl\:gap-11 { + gap: 2.75rem; + } + + .xl\:gap-12 { + gap: 3rem; + } + + .xl\:gap-14 { + gap: 3.5rem; + } + + .xl\:gap-16 { + gap: 4rem; + } + + .xl\:gap-20 { + gap: 5rem; + } + + .xl\:gap-24 { + gap: 6rem; + } + + .xl\:gap-28 { + gap: 7rem; + } + + .xl\:gap-32 { + gap: 8rem; + } + + .xl\:gap-36 { + gap: 9rem; + } + + .xl\:gap-40 { + gap: 10rem; + } + + .xl\:gap-44 { + gap: 11rem; + } + + .xl\:gap-48 { + gap: 12rem; + } + + .xl\:gap-52 { + gap: 13rem; + } + + .xl\:gap-56 { + gap: 14rem; + } + + .xl\:gap-60 { + gap: 15rem; + } + + .xl\:gap-64 { + gap: 16rem; + } + + .xl\:gap-72 { + gap: 18rem; + } + + .xl\:gap-80 { + gap: 20rem; + } + + .xl\:gap-96 { + gap: 24rem; + } + + .xl\:gap-px { + gap: 1px; + } + + .xl\:gap-0\.5 { + gap: 0.125rem; + } + + .xl\:gap-1\.5 { + gap: 0.375rem; + } + + .xl\:gap-2\.5 { + gap: 0.625rem; + } + + .xl\:gap-3\.5 { + gap: 0.875rem; + } + + .xl\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .xl\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .xl\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .xl\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .xl\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .xl\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .xl\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .xl\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .xl\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .xl\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .xl\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .xl\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .xl\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .xl\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .xl\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .xl\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .xl\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .xl\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .xl\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .xl\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .xl\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .xl\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .xl\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .xl\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .xl\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .xl\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .xl\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .xl\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .xl\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .xl\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .xl\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .xl\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .xl\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .xl\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .xl\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .xl\:gap-y-0 { + row-gap: 0px; + } + + .xl\:gap-y-1 { + row-gap: 0.25rem; + } + + .xl\:gap-y-2 { + row-gap: 0.5rem; + } + + .xl\:gap-y-3 { + row-gap: 0.75rem; + } + + .xl\:gap-y-4 { + row-gap: 1rem; + } + + .xl\:gap-y-5 { + row-gap: 1.25rem; + } + + .xl\:gap-y-6 { + row-gap: 1.5rem; + } + + .xl\:gap-y-7 { + row-gap: 1.75rem; + } + + .xl\:gap-y-8 { + row-gap: 2rem; + } + + .xl\:gap-y-9 { + row-gap: 2.25rem; + } + + .xl\:gap-y-10 { + row-gap: 2.5rem; + } + + .xl\:gap-y-11 { + row-gap: 2.75rem; + } + + .xl\:gap-y-12 { + row-gap: 3rem; + } + + .xl\:gap-y-14 { + row-gap: 3.5rem; + } + + .xl\:gap-y-16 { + row-gap: 4rem; + } + + .xl\:gap-y-20 { + row-gap: 5rem; + } + + .xl\:gap-y-24 { + row-gap: 6rem; + } + + .xl\:gap-y-28 { + row-gap: 7rem; + } + + .xl\:gap-y-32 { + row-gap: 8rem; + } + + .xl\:gap-y-36 { + row-gap: 9rem; + } + + .xl\:gap-y-40 { + row-gap: 10rem; + } + + .xl\:gap-y-44 { + row-gap: 11rem; + } + + .xl\:gap-y-48 { + row-gap: 12rem; + } + + .xl\:gap-y-52 { + row-gap: 13rem; + } + + .xl\:gap-y-56 { + row-gap: 14rem; + } + + .xl\:gap-y-60 { + row-gap: 15rem; + } + + .xl\:gap-y-64 { + row-gap: 16rem; + } + + .xl\:gap-y-72 { + row-gap: 18rem; + } + + .xl\:gap-y-80 { + row-gap: 20rem; + } + + .xl\:gap-y-96 { + row-gap: 24rem; + } + + .xl\:gap-y-px { + row-gap: 1px; + } + + .xl\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .xl\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .xl\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .xl\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .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\:auto-cols-auto { + grid-auto-columns: auto; + } + + .xl\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .xl\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .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-span-full { + grid-column: 1 / -1; + } + + .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\:auto-rows-auto { + grid-auto-rows: auto; + } + + .xl\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .xl\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .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-span-full { + grid-row: 1 / -1; + } + + .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 { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .xl\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-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 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:scale-x-0 { + --tw-scale-x: 0; + } + + .xl\:scale-x-50 { + --tw-scale-x: .5; + } + + .xl\:scale-x-75 { + --tw-scale-x: .75; + } + + .xl\:scale-x-90 { + --tw-scale-x: .9; + } + + .xl\:scale-x-95 { + --tw-scale-x: .95; + } + + .xl\:scale-x-100 { + --tw-scale-x: 1; + } + + .xl\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .xl\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .xl\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .xl\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .xl\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .xl\:rotate-0 { + --tw-rotate: 0deg; + } + + .xl\:rotate-1 { + --tw-rotate: 1deg; + } + + .xl\:rotate-2 { + --tw-rotate: 2deg; + } + + .xl\:rotate-3 { + --tw-rotate: 3deg; + } + + .xl\:rotate-6 { + --tw-rotate: 6deg; + } + + .xl\:rotate-12 { + --tw-rotate: 12deg; + } + + .xl\:rotate-45 { + --tw-rotate: 45deg; + } + + .xl\:rotate-90 { + --tw-rotate: 90deg; + } + + .xl\:rotate-180 { + --tw-rotate: 180deg; + } + + .xl\:-rotate-180 { + --tw-rotate: -180deg; + } + + .xl\:-rotate-90 { + --tw-rotate: -90deg; + } + + .xl\:-rotate-45 { + --tw-rotate: -45deg; + } + + .xl\:-rotate-12 { + --tw-rotate: -12deg; + } + + .xl\:-rotate-6 { + --tw-rotate: -6deg; + } + + .xl\:-rotate-3 { + --tw-rotate: -3deg; + } + + .xl\:-rotate-2 { + --tw-rotate: -2deg; + } + + .xl\:-rotate-1 { + --tw-rotate: -1deg; + } + + .xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .xl\:translate-x-0 { + --tw-translate-x: 0px; + } + + .xl\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .xl\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .xl\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .xl\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .xl\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .xl\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .xl\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .xl\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .xl\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .xl\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .xl\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .xl\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .xl\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .xl\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .xl\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .xl\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .xl\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .xl\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .xl\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .xl\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .xl\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .xl\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .xl\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .xl\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .xl\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .xl\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .xl\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .xl\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .xl\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .xl\:translate-x-px { + --tw-translate-x: 1px; + } + + .xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .xl\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .xl\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .xl\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .xl\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .xl\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .xl\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .xl\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .xl\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .xl\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .xl\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .xl\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .xl\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .xl\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .xl\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .xl\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .xl\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .xl\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .xl\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .xl\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .xl\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .xl\:-translate-x-px { + --tw-translate-x: -1px; + } + + .xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .xl\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .xl\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .xl\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .xl\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .xl\:translate-x-full { + --tw-translate-x: 100%; + } + + .xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .xl\:-translate-x-full { + --tw-translate-x: -100%; + } + + .xl\:translate-y-0 { + --tw-translate-y: 0px; + } + + .xl\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .xl\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .xl\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .xl\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .xl\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .xl\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .xl\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .xl\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .xl\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .xl\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .xl\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .xl\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .xl\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .xl\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .xl\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .xl\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .xl\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .xl\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .xl\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .xl\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .xl\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .xl\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .xl\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .xl\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .xl\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .xl\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .xl\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .xl\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .xl\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .xl\:translate-y-px { + --tw-translate-y: 1px; + } + + .xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .xl\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .xl\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .xl\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .xl\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .xl\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .xl\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .xl\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .xl\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .xl\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .xl\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .xl\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .xl\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .xl\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .xl\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .xl\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .xl\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .xl\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .xl\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .xl\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .xl\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .xl\:-translate-y-px { + --tw-translate-y: -1px; + } + + .xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .xl\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .xl\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .xl\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .xl\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .xl\:translate-y-full { + --tw-translate-y: 100%; + } + + .xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .xl\:-translate-y-full { + --tw-translate-y: -100%; + } + + .xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .xl\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .xl\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .xl\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .xl\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .xl\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .xl\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .xl\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .xl\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .xl\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .xl\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .xl\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .xl\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .xl\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .xl\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .xl\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .xl\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .xl\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .xl\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .xl\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .xl\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .xl\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .xl\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .xl\:transition-none { + transition-property: none; + } + + .xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .xl\:ease-linear { + transition-timing-function: linear; + } + + .xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .xl\:duration-75 { + transition-duration: 75ms; + } + + .xl\:duration-100 { + transition-duration: 100ms; + } + + .xl\:duration-150 { + transition-duration: 150ms; + } + + .xl\:duration-200 { + transition-duration: 200ms; + } + + .xl\:duration-300 { + transition-duration: 300ms; + } + + .xl\:duration-500 { + transition-duration: 500ms; + } + + .xl\:duration-700 { + transition-duration: 700ms; + } + + .xl\:duration-1000 { + transition-duration: 1000ms; + } + + .xl\:delay-75 { + transition-delay: 75ms; + } + + .xl\:delay-100 { + transition-delay: 100ms; + } + + .xl\:delay-150 { + transition-delay: 150ms; + } + + .xl\:delay-200 { + transition-delay: 200ms; + } + + .xl\:delay-300 { + transition-delay: 300ms; + } + + .xl\:delay-500 { + transition-delay: 500ms; + } + + .xl\:delay-700 { + transition-delay: 700ms; + } + + .xl\:delay-1000 { + transition-delay: 1000ms; + } + + .xl\:animate-none { + -webkit-animation: none; + animation: none; + } + + .xl\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .xl\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .xl\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .xl\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + +@media (min-width: 1536px) { + .\32xl\:container { + width: 100%; + } + + @media (min-width: 640px) { + .\32xl\:container { + max-width: 640px; + } + } + + @media (min-width: 768px) { + .\32xl\:container { + max-width: 768px; + } + } + + @media (min-width: 1024px) { + .\32xl\:container { + max-width: 1024px; + } + } + + @media (min-width: 1280px) { + .\32xl\:container { + max-width: 1280px; + } + } + + @media (min-width: 1536px) { + .\32xl\:container { + max-width: 1536px; + } + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1rem * var(--tw-space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2rem * var(--tw-space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3rem * var(--tw-space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(4rem * var(--tw-space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(5rem * var(--tw-space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(6rem * var(--tw-space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(7rem * var(--tw-space-x-reverse)); + margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(8rem * var(--tw-space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(9rem * var(--tw-space-x-reverse)); + margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(10rem * var(--tw-space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(11rem * var(--tw-space-x-reverse)); + margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(12rem * var(--tw-space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(13rem * var(--tw-space-x-reverse)); + margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(14rem * var(--tw-space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(15rem * var(--tw-space-x-reverse)); + margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(16rem * var(--tw-space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(18rem * var(--tw-space-x-reverse)); + margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(20rem * var(--tw-space-x-reverse)); + margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(24rem * var(--tw-space-x-reverse)); + margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(1px * var(--tw-space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-1px * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 1; + } + + .\32xl\:space-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 1; + } + + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(0px * var(--tw-divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(2px * var(--tw-divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(4px * var(--tw-divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(8px * var(--tw-divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 0; + border-right-width: calc(1px * var(--tw-divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + } + + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 1; + } + + .\32xl\:divide-x-reverse > :not([hidden]) ~ :not([hidden]) { + --tw-divide-x-reverse: 1; + } + + .\32xl\:divide-current > :not([hidden]) ~ :not([hidden]) { + border-color: currentColor; + } + + .\32xl\:divide-transparent > :not([hidden]) ~ :not([hidden]) { + border-color: transparent; + } + + .\32xl\:divide-black > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-divide-opacity)); + } + + .\32xl\:divide-white > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-divide-opacity)); + } + + .\32xl\:divide-darkCoolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-divide-opacity)); + } + + .\32xl\:divide-coolGray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-divide-opacity)); + } + + .\32xl\:divide-indigo-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-divide-opacity)); + } + + .\32xl\:divide-violet-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-divide-opacity)); + } + + .\32xl\:divide-yellow-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-divide-opacity)); + } + + .\32xl\:divide-red-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-divide-opacity)); + } + + .\32xl\:divide-green-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-divide-opacity)); + } + + .\32xl\:divide-blue-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-200 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-300 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-400 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-500 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-600 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-700 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-800 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-divide-opacity)); + } + + .\32xl\:divide-gray-900 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-divide-opacity)); + } + + .\32xl\:divide-solid > :not([hidden]) ~ :not([hidden]) { + border-style: solid; + } + + .\32xl\:divide-dashed > :not([hidden]) ~ :not([hidden]) { + border-style: dashed; + } + + .\32xl\:divide-dotted > :not([hidden]) ~ :not([hidden]) { + border-style: dotted; + } + + .\32xl\:divide-double > :not([hidden]) ~ :not([hidden]) { + border-style: double; + } + + .\32xl\:divide-none > :not([hidden]) ~ :not([hidden]) { + border-style: none; + } + + .\32xl\:divide-opacity-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0; + } + + .\32xl\:divide-opacity-5 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.05; + } + + .\32xl\:divide-opacity-10 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.1; + } + + .\32xl\:divide-opacity-20 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.2; + } + + .\32xl\:divide-opacity-25 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.25; + } + + .\32xl\:divide-opacity-30 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.3; + } + + .\32xl\:divide-opacity-40 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.4; + } + + .\32xl\:divide-opacity-50 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.5; + } + + .\32xl\:divide-opacity-60 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.6; + } + + .\32xl\:divide-opacity-70 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.7; + } + + .\32xl\:divide-opacity-75 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.75; + } + + .\32xl\:divide-opacity-80 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.8; + } + + .\32xl\:divide-opacity-90 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.9; + } + + .\32xl\:divide-opacity-95 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 0.95; + } + + .\32xl\:divide-opacity-100 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-opacity: 1; + } + + .\32xl\: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; + } + + .\32xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:focus-within\:sr-only:focus-within { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .\32xl\:focus-within\:not-sr-only:focus-within { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\: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; + } + + .\32xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .\32xl\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .\32xl\:bg-fixed { + background-attachment: fixed; + } + + .\32xl\:bg-local { + background-attachment: local; + } + + .\32xl\:bg-scroll { + background-attachment: scroll; + } + + .\32xl\:bg-clip-border { + background-clip: border-box; + } + + .\32xl\:bg-clip-padding { + background-clip: padding-box; + } + + .\32xl\:bg-clip-content { + background-clip: content-box; + } + + .\32xl\:bg-clip-text { + -webkit-background-clip: text; + background-clip: text; + } + + .\32xl\:bg-current { + background-color: currentColor; + } + + .\32xl\:bg-transparent { + background-color: transparent; + } + + .\32xl\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-current { + background-color: currentColor; + } + + .group:hover .\32xl\:group-hover\:bg-transparent { + background-color: transparent; + } + + .group:hover .\32xl\:group-hover\:bg-black { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-white { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-darkCoolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-50 { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-100 { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-200 { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-300 { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-400 { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-500 { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-600 { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-700 { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-800 { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-coolGray-900 { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-50 { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-100 { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-200 { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-300 { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-400 { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-700 { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-50 { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-100 { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-200 { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-300 { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-400 { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-500 { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-600 { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-700 { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-800 { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-violet-900 { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-50 { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-300 { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-600 { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-700 { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-50 { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-100 { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-300 { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-500 { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-600 { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-700 { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-800 { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-red-900 { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-300 { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-400 { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-500 { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-600 { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-700 { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-50 { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-100 { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-300 { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-400 { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-500 { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-600 { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-700 { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-50 { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-400 { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-500 { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-600 { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-800 { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-gray-900 { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .group:hover .\32xl\:group-hover\:bg-body { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-current:focus-within { + background-color: currentColor; + } + + .\32xl\:focus-within\:bg-transparent:focus-within { + background-color: transparent; + } + + .\32xl\:focus-within\:bg-black:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-white:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-darkCoolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-coolGray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-indigo-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-violet-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-yellow-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-red-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-green-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-blue-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-50:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-100:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-200:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-300:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-400:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-500:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-600:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-700:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-800:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-gray-900:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:focus-within\:bg-body:focus-within { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-current:hover { + background-color: currentColor; + } + + .\32xl\:hover\:bg-transparent:hover { + background-color: transparent; + } + + .\32xl\:hover\:bg-black:hover { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-white:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-darkCoolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-coolGray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-violet-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-red-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-50:hover { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-100:hover { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-200:hover { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-300:hover { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-400:hover { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-500:hover { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-600:hover { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-700:hover { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-800:hover { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-gray-900:hover { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:hover\:bg-body:hover { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-current:focus { + background-color: currentColor; + } + + .\32xl\:focus\:bg-transparent:focus { + background-color: transparent; + } + + .\32xl\:focus\:bg-black:focus { + --tw-bg-opacity: 1; + background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-white:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 246, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 237, 239, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 209, 214, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(176, 181, 189, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 126, 140, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(58, 71, 91, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(52, 64, 82, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 53, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 43, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-darkCoolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(28, 35, 45, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(247, 248, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(238, 240, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(213, 218, 225, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(187, 195, 207, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(136, 150, 171, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(85, 105, 135, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(77, 95, 122, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(64, 79, 101, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 63, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-coolGray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 51, 66, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 246, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(240, 238, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(218, 212, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(195, 185, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(150, 133, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(105, 81, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(95, 73, 230, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(79, 61, 191, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(63, 49, 153, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-indigo-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(51, 40, 125, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 247, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(246, 238, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(233, 213, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(220, 187, 252, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(194, 136, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(168, 85, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(151, 77, 222, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(126, 64, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(101, 51, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-violet-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(82, 42, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 250, 243, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 245, 231, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 231, 194, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 216, 157, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(248, 187, 84, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 158, 11, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(221, 142, 10, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(184, 119, 8, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(147, 95, 7, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-yellow-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(120, 77, 5, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(254, 247, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(253, 238, 236, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(251, 214, 208, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 189, 180, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 139, 124, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(239, 88, 68, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(215, 80, 61, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(179, 67, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(143, 53, 41, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-red-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(117, 44, 33, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(244, 253, 247, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(234, 250, 240, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(202, 244, 217, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(170, 237, 195, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(106, 223, 149, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(42, 209, 103, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(38, 188, 94, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(32, 157, 78, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(25, 125, 62, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-green-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(21, 102, 51, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(245, 249, 255, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(235, 243, 254, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(206, 224, 253, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(177, 205, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(118, 168, 249, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(53, 117, 221, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(44, 98, 185, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(35, 78, 148, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-blue-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(29, 64, 121, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-50:focus { + --tw-bg-opacity: 1; + background-color: rgba(249, 250, 251, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-100:focus { + --tw-bg-opacity: 1; + background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-200:focus { + --tw-bg-opacity: 1; + background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-300:focus { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-400:focus { + --tw-bg-opacity: 1; + background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-500:focus { + --tw-bg-opacity: 1; + background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-600:focus { + --tw-bg-opacity: 1; + background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-700:focus { + --tw-bg-opacity: 1; + background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-800:focus { + --tw-bg-opacity: 1; + background-color: rgba(31, 41, 55, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-gray-900:focus { + --tw-bg-opacity: 1; + background-color: rgba(17, 24, 39, var(--tw-bg-opacity)); + } + + .\32xl\:focus\:bg-body:focus { + --tw-bg-opacity: 1; + background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); + } + + .\32xl\:bg-none { + background-image: none; + } + + .\32xl\:bg-gradient-to-t { + background-image: linear-gradient(to top, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-tr { + background-image: linear-gradient(to top right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-r { + background-image: linear-gradient(to right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-br { + background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-b { + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-bl { + background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-l { + background-image: linear-gradient(to left, var(--tw-gradient-stops)); + } + + .\32xl\:bg-gradient-to-tl { + background-image: linear-gradient(to top left, var(--tw-gradient-stops)); + } + + .\32xl\:from-current { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:from-transparent { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:from-black { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:from-white { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:from-darkCoolGray-50 { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:from-darkCoolGray-100 { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:from-darkCoolGray-200 { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:from-darkCoolGray-300 { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:from-darkCoolGray-400 { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:from-darkCoolGray-500 { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:from-darkCoolGray-600 { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:from-darkCoolGray-700 { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:from-darkCoolGray-800 { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:from-darkCoolGray-900 { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:from-coolGray-50 { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:from-coolGray-100 { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:from-coolGray-200 { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:from-coolGray-300 { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:from-coolGray-400 { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:from-coolGray-500 { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:from-coolGray-600 { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:from-coolGray-700 { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:from-coolGray-800 { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:from-coolGray-900 { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:from-indigo-50 { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:from-indigo-100 { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:from-indigo-200 { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:from-indigo-300 { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:from-indigo-400 { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:from-indigo-500 { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:from-indigo-600 { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:from-indigo-700 { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:from-indigo-800 { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:from-indigo-900 { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:from-violet-50 { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:from-violet-100 { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:from-violet-200 { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:from-violet-300 { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:from-violet-400 { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:from-violet-500 { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:from-violet-600 { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:from-violet-700 { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:from-violet-800 { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:from-violet-900 { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:from-yellow-50 { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:from-yellow-100 { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:from-yellow-200 { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:from-yellow-300 { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:from-yellow-400 { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:from-yellow-500 { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:from-yellow-600 { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:from-yellow-700 { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:from-yellow-800 { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:from-yellow-900 { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:from-red-50 { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:from-red-100 { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:from-red-200 { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:from-red-300 { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:from-red-400 { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:from-red-500 { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:from-red-600 { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:from-red-700 { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:from-red-800 { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:from-red-900 { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:from-green-50 { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:from-green-100 { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:from-green-200 { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:from-green-300 { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:from-green-400 { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:from-green-500 { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:from-green-600 { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:from-green-700 { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:from-green-800 { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:from-green-900 { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:from-blue-50 { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:from-blue-100 { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:from-blue-200 { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:from-blue-300 { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:from-blue-400 { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:from-blue-500 { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:from-blue-600 { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:from-blue-700 { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:from-blue-800 { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:from-blue-900 { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:from-gray-50 { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:from-gray-100 { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:from-gray-200 { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:from-gray-300 { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:from-gray-400 { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:from-gray-500 { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:from-gray-600 { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:from-gray-700 { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:from-gray-800 { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:from-gray-900 { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:via-current { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:via-transparent { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:via-black { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:via-white { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:via-darkCoolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:via-darkCoolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:via-darkCoolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:via-darkCoolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:via-darkCoolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:via-darkCoolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:via-darkCoolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:via-darkCoolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:via-darkCoolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:via-darkCoolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:via-coolGray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:via-coolGray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:via-coolGray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:via-coolGray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:via-coolGray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:via-coolGray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:via-coolGray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:via-coolGray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:via-coolGray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:via-coolGray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:via-indigo-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:via-indigo-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:via-indigo-200 { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:via-indigo-300 { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:via-indigo-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:via-indigo-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:via-indigo-600 { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:via-indigo-700 { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:via-indigo-800 { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:via-indigo-900 { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:via-violet-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:via-violet-100 { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:via-violet-200 { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:via-violet-300 { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:via-violet-400 { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:via-violet-500 { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:via-violet-600 { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:via-violet-700 { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:via-violet-800 { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:via-violet-900 { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:via-yellow-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:via-yellow-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:via-yellow-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:via-yellow-300 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:via-yellow-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:via-yellow-500 { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:via-yellow-600 { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:via-yellow-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:via-yellow-800 { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:via-yellow-900 { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:via-red-50 { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:via-red-100 { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:via-red-200 { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:via-red-300 { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:via-red-400 { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:via-red-500 { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:via-red-600 { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:via-red-700 { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:via-red-800 { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:via-red-900 { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:via-green-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:via-green-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:via-green-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:via-green-300 { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:via-green-400 { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:via-green-500 { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:via-green-600 { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:via-green-700 { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:via-green-800 { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:via-green-900 { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:via-blue-50 { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:via-blue-100 { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:via-blue-200 { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:via-blue-300 { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:via-blue-400 { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:via-blue-500 { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:via-blue-600 { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:via-blue-700 { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:via-blue-800 { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:via-blue-900 { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:via-gray-50 { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:via-gray-100 { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:via-gray-200 { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:via-gray-300 { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:via-gray-400 { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:via-gray-500 { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:via-gray-600 { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:via-gray-700 { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:via-gray-800 { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:via-gray-900 { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor; + } + + .\32xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .\32xl\:to-black { + --tw-gradient-to: #000; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff; + } + + .\32xl\:to-darkCoolGray-50 { + --tw-gradient-to: #F5F6F7; + } + + .\32xl\:to-darkCoolGray-100 { + --tw-gradient-to: #EBEDEF; + } + + .\32xl\:to-darkCoolGray-200 { + --tw-gradient-to: #CED1D6; + } + + .\32xl\:to-darkCoolGray-300 { + --tw-gradient-to: #B0B5BD; + } + + .\32xl\:to-darkCoolGray-400 { + --tw-gradient-to: #757E8C; + } + + .\32xl\:to-darkCoolGray-500 { + --tw-gradient-to: #3A475B; + } + + .\32xl\:to-darkCoolGray-600 { + --tw-gradient-to: #344052; + } + + .\32xl\:to-darkCoolGray-700 { + --tw-gradient-to: #2C3544; + } + + .\32xl\:to-darkCoolGray-800 { + --tw-gradient-to: #232B37; + } + + .\32xl\:to-darkCoolGray-900 { + --tw-gradient-to: #1C232D; + } + + .\32xl\:to-coolGray-50 { + --tw-gradient-to: #F7F8F9; + } + + .\32xl\:to-coolGray-100 { + --tw-gradient-to: #EEF0F3; + } + + .\32xl\:to-coolGray-200 { + --tw-gradient-to: #D5DAE1; + } + + .\32xl\:to-coolGray-300 { + --tw-gradient-to: #BBC3CF; + } + + .\32xl\:to-coolGray-400 { + --tw-gradient-to: #8896AB; + } + + .\32xl\:to-coolGray-500 { + --tw-gradient-to: #556987; + } + + .\32xl\:to-coolGray-600 { + --tw-gradient-to: #4D5F7A; + } + + .\32xl\:to-coolGray-700 { + --tw-gradient-to: #404F65; + } + + .\32xl\:to-coolGray-800 { + --tw-gradient-to: #333F51; + } + + .\32xl\:to-coolGray-900 { + --tw-gradient-to: #2A3342; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #F8F6FF; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #F0EEFF; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #DAD4FF; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #C3B9FF; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #9685FF; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6951FF; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #5F49E6; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4F3DBF; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3F3199; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #33287D; + } + + .\32xl\:to-violet-50 { + --tw-gradient-to: #FBF7FF; + } + + .\32xl\:to-violet-100 { + --tw-gradient-to: #F6EEFE; + } + + .\32xl\:to-violet-200 { + --tw-gradient-to: #E9D5FD; + } + + .\32xl\:to-violet-300 { + --tw-gradient-to: #DCBBFC; + } + + .\32xl\:to-violet-400 { + --tw-gradient-to: #C288F9; + } + + .\32xl\:to-violet-500 { + --tw-gradient-to: #A855F7; + } + + .\32xl\:to-violet-600 { + --tw-gradient-to: #974DDE; + } + + .\32xl\:to-violet-700 { + --tw-gradient-to: #7E40B9; + } + + .\32xl\:to-violet-800 { + --tw-gradient-to: #653394; + } + + .\32xl\:to-violet-900 { + --tw-gradient-to: #522A79; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #FFFAF3; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #FEF5E7; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #FDE7C2; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #FBD89D; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #F8BB54; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #F59E0B; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #DD8E0A; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #B87708; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #935F07; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #784D05; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #FEF7F6; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #FDEEEC; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #FBD6D0; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #F9BDB4; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #F48B7C; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #EF5844; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #D7503D; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #B34333; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #8F3529; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #752C21; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #F4FDF7; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #EAFAF0; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #CAF4D9; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #AAEDC3; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #6ADF95; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #2AD167; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #26BC5E; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #209D4E; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #197D3E; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #156633; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #F5F9FF; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #EBF3FE; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #CEE0FD; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #B1CDFB; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #76A8F9; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3B82F6; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #3575DD; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #2C62B9; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #234E94; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1D4079; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-50:hover { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-100:hover { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-200:hover { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-300:hover { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-400:hover { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-500:hover { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-600:hover { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-700:hover { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-800:hover { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:hover\:from-darkCoolGray-900:hover { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:hover\:from-coolGray-50:hover { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:hover\:from-coolGray-100:hover { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:hover\:from-coolGray-200:hover { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:hover\:from-coolGray-300:hover { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:hover\:from-coolGray-400:hover { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:hover\:from-coolGray-500:hover { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:hover\:from-coolGray-600:hover { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:hover\:from-coolGray-700:hover { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:hover\:from-coolGray-800:hover { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:hover\:from-coolGray-900:hover { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:hover\:from-violet-50:hover { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:hover\:from-violet-100:hover { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:hover\:from-violet-200:hover { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:hover\:from-violet-300:hover { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:hover\:from-violet-400:hover { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:hover\:from-violet-500:hover { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:hover\:from-violet-600:hover { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:hover\:from-violet-700:hover { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:hover\:from-violet-800:hover { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:hover\:from-violet-900:hover { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:hover\:via-darkCoolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:hover\:via-coolGray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:hover\:via-coolGray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:hover\:via-coolGray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:hover\:via-coolGray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:hover\:via-coolGray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:hover\:via-coolGray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:hover\:via-coolGray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:hover\:via-coolGray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:hover\:via-coolGray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:hover\:via-coolGray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:hover\:via-violet-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:hover\:via-violet-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:hover\:via-violet-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:hover\:via-violet-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:hover\:via-violet-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:hover\:via-violet-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:hover\:via-violet-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:hover\:via-violet-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:hover\:via-violet-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:hover\:via-violet-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .\32xl\:hover\:to-darkCoolGray-50:hover { + --tw-gradient-to: #F5F6F7; + } + + .\32xl\:hover\:to-darkCoolGray-100:hover { + --tw-gradient-to: #EBEDEF; + } + + .\32xl\:hover\:to-darkCoolGray-200:hover { + --tw-gradient-to: #CED1D6; + } + + .\32xl\:hover\:to-darkCoolGray-300:hover { + --tw-gradient-to: #B0B5BD; + } + + .\32xl\:hover\:to-darkCoolGray-400:hover { + --tw-gradient-to: #757E8C; + } + + .\32xl\:hover\:to-darkCoolGray-500:hover { + --tw-gradient-to: #3A475B; + } + + .\32xl\:hover\:to-darkCoolGray-600:hover { + --tw-gradient-to: #344052; + } + + .\32xl\:hover\:to-darkCoolGray-700:hover { + --tw-gradient-to: #2C3544; + } + + .\32xl\:hover\:to-darkCoolGray-800:hover { + --tw-gradient-to: #232B37; + } + + .\32xl\:hover\:to-darkCoolGray-900:hover { + --tw-gradient-to: #1C232D; + } + + .\32xl\:hover\:to-coolGray-50:hover { + --tw-gradient-to: #F7F8F9; + } + + .\32xl\:hover\:to-coolGray-100:hover { + --tw-gradient-to: #EEF0F3; + } + + .\32xl\:hover\:to-coolGray-200:hover { + --tw-gradient-to: #D5DAE1; + } + + .\32xl\:hover\:to-coolGray-300:hover { + --tw-gradient-to: #BBC3CF; + } + + .\32xl\:hover\:to-coolGray-400:hover { + --tw-gradient-to: #8896AB; + } + + .\32xl\:hover\:to-coolGray-500:hover { + --tw-gradient-to: #556987; + } + + .\32xl\:hover\:to-coolGray-600:hover { + --tw-gradient-to: #4D5F7A; + } + + .\32xl\:hover\:to-coolGray-700:hover { + --tw-gradient-to: #404F65; + } + + .\32xl\:hover\:to-coolGray-800:hover { + --tw-gradient-to: #333F51; + } + + .\32xl\:hover\:to-coolGray-900:hover { + --tw-gradient-to: #2A3342; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #F8F6FF; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #F0EEFF; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #DAD4FF; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #C3B9FF; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #9685FF; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6951FF; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #5F49E6; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4F3DBF; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3F3199; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #33287D; + } + + .\32xl\:hover\:to-violet-50:hover { + --tw-gradient-to: #FBF7FF; + } + + .\32xl\:hover\:to-violet-100:hover { + --tw-gradient-to: #F6EEFE; + } + + .\32xl\:hover\:to-violet-200:hover { + --tw-gradient-to: #E9D5FD; + } + + .\32xl\:hover\:to-violet-300:hover { + --tw-gradient-to: #DCBBFC; + } + + .\32xl\:hover\:to-violet-400:hover { + --tw-gradient-to: #C288F9; + } + + .\32xl\:hover\:to-violet-500:hover { + --tw-gradient-to: #A855F7; + } + + .\32xl\:hover\:to-violet-600:hover { + --tw-gradient-to: #974DDE; + } + + .\32xl\:hover\:to-violet-700:hover { + --tw-gradient-to: #7E40B9; + } + + .\32xl\:hover\:to-violet-800:hover { + --tw-gradient-to: #653394; + } + + .\32xl\:hover\:to-violet-900:hover { + --tw-gradient-to: #522A79; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #FFFAF3; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #FEF5E7; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #FDE7C2; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #FBD89D; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #F8BB54; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #F59E0B; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #DD8E0A; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #B87708; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #935F07; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #784D05; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #FEF7F6; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #FDEEEC; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #FBD6D0; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #F9BDB4; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #F48B7C; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #EF5844; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #D7503D; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #B34333; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #8F3529; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #752C21; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #F4FDF7; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #EAFAF0; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #CAF4D9; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #AAEDC3; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #6ADF95; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #2AD167; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #26BC5E; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #209D4E; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #197D3E; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #156633; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #F5F9FF; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #EBF3FE; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #CEE0FD; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #B1CDFB; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #76A8F9; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3B82F6; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #3575DD; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #2C62B9; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #234E94; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1D4079; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .\32xl\:focus\:from-current:focus { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:from-transparent:focus { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:from-black:focus { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:from-white:focus { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-50:focus { + --tw-gradient-from: #F5F6F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-100:focus { + --tw-gradient-from: #EBEDEF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-200:focus { + --tw-gradient-from: #CED1D6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-300:focus { + --tw-gradient-from: #B0B5BD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-400:focus { + --tw-gradient-from: #757E8C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-500:focus { + --tw-gradient-from: #3A475B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-600:focus { + --tw-gradient-from: #344052; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-700:focus { + --tw-gradient-from: #2C3544; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-800:focus { + --tw-gradient-from: #232B37; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:focus\:from-darkCoolGray-900:focus { + --tw-gradient-from: #1C232D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:focus\:from-coolGray-50:focus { + --tw-gradient-from: #F7F8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:focus\:from-coolGray-100:focus { + --tw-gradient-from: #EEF0F3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:focus\:from-coolGray-200:focus { + --tw-gradient-from: #D5DAE1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:focus\:from-coolGray-300:focus { + --tw-gradient-from: #BBC3CF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:focus\:from-coolGray-400:focus { + --tw-gradient-from: #8896AB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:focus\:from-coolGray-500:focus { + --tw-gradient-from: #556987; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:focus\:from-coolGray-600:focus { + --tw-gradient-from: #4D5F7A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:focus\:from-coolGray-700:focus { + --tw-gradient-from: #404F65; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:focus\:from-coolGray-800:focus { + --tw-gradient-from: #333F51; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:focus\:from-coolGray-900:focus { + --tw-gradient-from: #2A3342; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:focus\:from-indigo-50:focus { + --tw-gradient-from: #F8F6FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:focus\:from-indigo-100:focus { + --tw-gradient-from: #F0EEFF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:focus\:from-indigo-200:focus { + --tw-gradient-from: #DAD4FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:focus\:from-indigo-300:focus { + --tw-gradient-from: #C3B9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:focus\:from-indigo-400:focus { + --tw-gradient-from: #9685FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:focus\:from-indigo-500:focus { + --tw-gradient-from: #6951FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:focus\:from-indigo-600:focus { + --tw-gradient-from: #5F49E6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:focus\:from-indigo-700:focus { + --tw-gradient-from: #4F3DBF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:focus\:from-indigo-800:focus { + --tw-gradient-from: #3F3199; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:focus\:from-indigo-900:focus { + --tw-gradient-from: #33287D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:focus\:from-violet-50:focus { + --tw-gradient-from: #FBF7FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:focus\:from-violet-100:focus { + --tw-gradient-from: #F6EEFE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:focus\:from-violet-200:focus { + --tw-gradient-from: #E9D5FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:focus\:from-violet-300:focus { + --tw-gradient-from: #DCBBFC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:focus\:from-violet-400:focus { + --tw-gradient-from: #C288F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:focus\:from-violet-500:focus { + --tw-gradient-from: #A855F7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:focus\:from-violet-600:focus { + --tw-gradient-from: #974DDE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:focus\:from-violet-700:focus { + --tw-gradient-from: #7E40B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:focus\:from-violet-800:focus { + --tw-gradient-from: #653394; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:focus\:from-violet-900:focus { + --tw-gradient-from: #522A79; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:focus\:from-yellow-50:focus { + --tw-gradient-from: #FFFAF3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:focus\:from-yellow-100:focus { + --tw-gradient-from: #FEF5E7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:focus\:from-yellow-200:focus { + --tw-gradient-from: #FDE7C2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:focus\:from-yellow-300:focus { + --tw-gradient-from: #FBD89D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:focus\:from-yellow-400:focus { + --tw-gradient-from: #F8BB54; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:focus\:from-yellow-500:focus { + --tw-gradient-from: #F59E0B; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:focus\:from-yellow-600:focus { + --tw-gradient-from: #DD8E0A; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:focus\:from-yellow-700:focus { + --tw-gradient-from: #B87708; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:focus\:from-yellow-800:focus { + --tw-gradient-from: #935F07; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:focus\:from-yellow-900:focus { + --tw-gradient-from: #784D05; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:focus\:from-red-50:focus { + --tw-gradient-from: #FEF7F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:focus\:from-red-100:focus { + --tw-gradient-from: #FDEEEC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:focus\:from-red-200:focus { + --tw-gradient-from: #FBD6D0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:focus\:from-red-300:focus { + --tw-gradient-from: #F9BDB4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:focus\:from-red-400:focus { + --tw-gradient-from: #F48B7C; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:focus\:from-red-500:focus { + --tw-gradient-from: #EF5844; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:focus\:from-red-600:focus { + --tw-gradient-from: #D7503D; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:focus\:from-red-700:focus { + --tw-gradient-from: #B34333; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:focus\:from-red-800:focus { + --tw-gradient-from: #8F3529; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:focus\:from-red-900:focus { + --tw-gradient-from: #752C21; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:focus\:from-green-50:focus { + --tw-gradient-from: #F4FDF7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:focus\:from-green-100:focus { + --tw-gradient-from: #EAFAF0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:focus\:from-green-200:focus { + --tw-gradient-from: #CAF4D9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:focus\:from-green-300:focus { + --tw-gradient-from: #AAEDC3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:focus\:from-green-400:focus { + --tw-gradient-from: #6ADF95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:focus\:from-green-500:focus { + --tw-gradient-from: #2AD167; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:focus\:from-green-600:focus { + --tw-gradient-from: #26BC5E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:focus\:from-green-700:focus { + --tw-gradient-from: #209D4E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:focus\:from-green-800:focus { + --tw-gradient-from: #197D3E; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:focus\:from-green-900:focus { + --tw-gradient-from: #156633; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:focus\:from-blue-50:focus { + --tw-gradient-from: #F5F9FF; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:focus\:from-blue-100:focus { + --tw-gradient-from: #EBF3FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:focus\:from-blue-200:focus { + --tw-gradient-from: #CEE0FD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:focus\:from-blue-300:focus { + --tw-gradient-from: #B1CDFB; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:focus\:from-blue-400:focus { + --tw-gradient-from: #76A8F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:focus\:from-blue-500:focus { + --tw-gradient-from: #3B82F6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:focus\:from-blue-600:focus { + --tw-gradient-from: #3575DD; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:focus\:from-blue-700:focus { + --tw-gradient-from: #2C62B9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:focus\:from-blue-800:focus { + --tw-gradient-from: #234E94; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:focus\:from-blue-900:focus { + --tw-gradient-from: #1D4079; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:focus\:from-gray-50:focus { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:focus\:from-gray-100:focus { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:focus\:from-gray-200:focus { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:focus\:from-gray-300:focus { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:focus\:from-gray-400:focus { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:focus\:from-gray-500:focus { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:focus\:from-gray-600:focus { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:focus\:from-gray-700:focus { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:focus\:from-gray-800:focus { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:focus\:from-gray-900:focus { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:focus\:via-current:focus { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:via-transparent:focus { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:via-black:focus { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); + } + + .\32xl\:focus\:via-white:focus { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F6F7, var(--tw-gradient-to, rgba(245, 246, 247, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBEDEF, var(--tw-gradient-to, rgba(235, 237, 239, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CED1D6, var(--tw-gradient-to, rgba(206, 209, 214, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B0B5BD, var(--tw-gradient-to, rgba(176, 181, 189, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #757E8C, var(--tw-gradient-to, rgba(117, 126, 140, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3A475B, var(--tw-gradient-to, rgba(58, 71, 91, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #344052, var(--tw-gradient-to, rgba(52, 64, 82, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C3544, var(--tw-gradient-to, rgba(44, 53, 68, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #232B37, var(--tw-gradient-to, rgba(35, 43, 55, 0)); + } + + .\32xl\:focus\:via-darkCoolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1C232D, var(--tw-gradient-to, rgba(28, 35, 45, 0)); + } + + .\32xl\:focus\:via-coolGray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F7F8F9, var(--tw-gradient-to, rgba(247, 248, 249, 0)); + } + + .\32xl\:focus\:via-coolGray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EEF0F3, var(--tw-gradient-to, rgba(238, 240, 243, 0)); + } + + .\32xl\:focus\:via-coolGray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D5DAE1, var(--tw-gradient-to, rgba(213, 218, 225, 0)); + } + + .\32xl\:focus\:via-coolGray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #BBC3CF, var(--tw-gradient-to, rgba(187, 195, 207, 0)); + } + + .\32xl\:focus\:via-coolGray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8896AB, var(--tw-gradient-to, rgba(136, 150, 171, 0)); + } + + .\32xl\:focus\:via-coolGray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #556987, var(--tw-gradient-to, rgba(85, 105, 135, 0)); + } + + .\32xl\:focus\:via-coolGray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4D5F7A, var(--tw-gradient-to, rgba(77, 95, 122, 0)); + } + + .\32xl\:focus\:via-coolGray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #404F65, var(--tw-gradient-to, rgba(64, 79, 101, 0)); + } + + .\32xl\:focus\:via-coolGray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #333F51, var(--tw-gradient-to, rgba(51, 63, 81, 0)); + } + + .\32xl\:focus\:via-coolGray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2A3342, var(--tw-gradient-to, rgba(42, 51, 66, 0)); + } + + .\32xl\:focus\:via-indigo-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8F6FF, var(--tw-gradient-to, rgba(248, 246, 255, 0)); + } + + .\32xl\:focus\:via-indigo-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F0EEFF, var(--tw-gradient-to, rgba(240, 238, 255, 0)); + } + + .\32xl\:focus\:via-indigo-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DAD4FF, var(--tw-gradient-to, rgba(218, 212, 255, 0)); + } + + .\32xl\:focus\:via-indigo-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C3B9FF, var(--tw-gradient-to, rgba(195, 185, 255, 0)); + } + + .\32xl\:focus\:via-indigo-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9685FF, var(--tw-gradient-to, rgba(150, 133, 255, 0)); + } + + .\32xl\:focus\:via-indigo-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6951FF, var(--tw-gradient-to, rgba(105, 81, 255, 0)); + } + + .\32xl\:focus\:via-indigo-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #5F49E6, var(--tw-gradient-to, rgba(95, 73, 230, 0)); + } + + .\32xl\:focus\:via-indigo-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4F3DBF, var(--tw-gradient-to, rgba(79, 61, 191, 0)); + } + + .\32xl\:focus\:via-indigo-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3F3199, var(--tw-gradient-to, rgba(63, 49, 153, 0)); + } + + .\32xl\:focus\:via-indigo-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #33287D, var(--tw-gradient-to, rgba(51, 40, 125, 0)); + } + + .\32xl\:focus\:via-violet-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBF7FF, var(--tw-gradient-to, rgba(251, 247, 255, 0)); + } + + .\32xl\:focus\:via-violet-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F6EEFE, var(--tw-gradient-to, rgba(246, 238, 254, 0)); + } + + .\32xl\:focus\:via-violet-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #E9D5FD, var(--tw-gradient-to, rgba(233, 213, 253, 0)); + } + + .\32xl\:focus\:via-violet-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DCBBFC, var(--tw-gradient-to, rgba(220, 187, 252, 0)); + } + + .\32xl\:focus\:via-violet-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #C288F9, var(--tw-gradient-to, rgba(194, 136, 249, 0)); + } + + .\32xl\:focus\:via-violet-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #A855F7, var(--tw-gradient-to, rgba(168, 85, 247, 0)); + } + + .\32xl\:focus\:via-violet-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #974DDE, var(--tw-gradient-to, rgba(151, 77, 222, 0)); + } + + .\32xl\:focus\:via-violet-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #7E40B9, var(--tw-gradient-to, rgba(126, 64, 185, 0)); + } + + .\32xl\:focus\:via-violet-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #653394, var(--tw-gradient-to, rgba(101, 51, 148, 0)); + } + + .\32xl\:focus\:via-violet-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #522A79, var(--tw-gradient-to, rgba(82, 42, 121, 0)); + } + + .\32xl\:focus\:via-yellow-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FFFAF3, var(--tw-gradient-to, rgba(255, 250, 243, 0)); + } + + .\32xl\:focus\:via-yellow-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF5E7, var(--tw-gradient-to, rgba(254, 245, 231, 0)); + } + + .\32xl\:focus\:via-yellow-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDE7C2, var(--tw-gradient-to, rgba(253, 231, 194, 0)); + } + + .\32xl\:focus\:via-yellow-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD89D, var(--tw-gradient-to, rgba(251, 216, 157, 0)); + } + + .\32xl\:focus\:via-yellow-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F8BB54, var(--tw-gradient-to, rgba(248, 187, 84, 0)); + } + + .\32xl\:focus\:via-yellow-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F59E0B, var(--tw-gradient-to, rgba(245, 158, 11, 0)); + } + + .\32xl\:focus\:via-yellow-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #DD8E0A, var(--tw-gradient-to, rgba(221, 142, 10, 0)); + } + + .\32xl\:focus\:via-yellow-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B87708, var(--tw-gradient-to, rgba(184, 119, 8, 0)); + } + + .\32xl\:focus\:via-yellow-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #935F07, var(--tw-gradient-to, rgba(147, 95, 7, 0)); + } + + .\32xl\:focus\:via-yellow-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #784D05, var(--tw-gradient-to, rgba(120, 77, 5, 0)); + } + + .\32xl\:focus\:via-red-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FEF7F6, var(--tw-gradient-to, rgba(254, 247, 246, 0)); + } + + .\32xl\:focus\:via-red-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FDEEEC, var(--tw-gradient-to, rgba(253, 238, 236, 0)); + } + + .\32xl\:focus\:via-red-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #FBD6D0, var(--tw-gradient-to, rgba(251, 214, 208, 0)); + } + + .\32xl\:focus\:via-red-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F9BDB4, var(--tw-gradient-to, rgba(249, 189, 180, 0)); + } + + .\32xl\:focus\:via-red-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F48B7C, var(--tw-gradient-to, rgba(244, 139, 124, 0)); + } + + .\32xl\:focus\:via-red-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EF5844, var(--tw-gradient-to, rgba(239, 88, 68, 0)); + } + + .\32xl\:focus\:via-red-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #D7503D, var(--tw-gradient-to, rgba(215, 80, 61, 0)); + } + + .\32xl\:focus\:via-red-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B34333, var(--tw-gradient-to, rgba(179, 67, 51, 0)); + } + + .\32xl\:focus\:via-red-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #8F3529, var(--tw-gradient-to, rgba(143, 53, 41, 0)); + } + + .\32xl\:focus\:via-red-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #752C21, var(--tw-gradient-to, rgba(117, 44, 33, 0)); + } + + .\32xl\:focus\:via-green-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F4FDF7, var(--tw-gradient-to, rgba(244, 253, 247, 0)); + } + + .\32xl\:focus\:via-green-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EAFAF0, var(--tw-gradient-to, rgba(234, 250, 240, 0)); + } + + .\32xl\:focus\:via-green-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CAF4D9, var(--tw-gradient-to, rgba(202, 244, 217, 0)); + } + + .\32xl\:focus\:via-green-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #AAEDC3, var(--tw-gradient-to, rgba(170, 237, 195, 0)); + } + + .\32xl\:focus\:via-green-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6ADF95, var(--tw-gradient-to, rgba(106, 223, 149, 0)); + } + + .\32xl\:focus\:via-green-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2AD167, var(--tw-gradient-to, rgba(42, 209, 103, 0)); + } + + .\32xl\:focus\:via-green-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #26BC5E, var(--tw-gradient-to, rgba(38, 188, 94, 0)); + } + + .\32xl\:focus\:via-green-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #209D4E, var(--tw-gradient-to, rgba(32, 157, 78, 0)); + } + + .\32xl\:focus\:via-green-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #197D3E, var(--tw-gradient-to, rgba(25, 125, 62, 0)); + } + + .\32xl\:focus\:via-green-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #156633, var(--tw-gradient-to, rgba(21, 102, 51, 0)); + } + + .\32xl\:focus\:via-blue-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #F5F9FF, var(--tw-gradient-to, rgba(245, 249, 255, 0)); + } + + .\32xl\:focus\:via-blue-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #EBF3FE, var(--tw-gradient-to, rgba(235, 243, 254, 0)); + } + + .\32xl\:focus\:via-blue-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #CEE0FD, var(--tw-gradient-to, rgba(206, 224, 253, 0)); + } + + .\32xl\:focus\:via-blue-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #B1CDFB, var(--tw-gradient-to, rgba(177, 205, 251, 0)); + } + + .\32xl\:focus\:via-blue-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #76A8F9, var(--tw-gradient-to, rgba(118, 168, 249, 0)); + } + + .\32xl\:focus\:via-blue-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3B82F6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); + } + + .\32xl\:focus\:via-blue-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #3575DD, var(--tw-gradient-to, rgba(53, 117, 221, 0)); + } + + .\32xl\:focus\:via-blue-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #2C62B9, var(--tw-gradient-to, rgba(44, 98, 185, 0)); + } + + .\32xl\:focus\:via-blue-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #234E94, var(--tw-gradient-to, rgba(35, 78, 148, 0)); + } + + .\32xl\:focus\:via-blue-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1D4079, var(--tw-gradient-to, rgba(29, 64, 121, 0)); + } + + .\32xl\:focus\:via-gray-50:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); + } + + .\32xl\:focus\:via-gray-100:focus { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); + } + + .\32xl\:focus\:via-gray-200:focus { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); + } + + .\32xl\:focus\:via-gray-300:focus { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); + } + + .\32xl\:focus\:via-gray-400:focus { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); + } + + .\32xl\:focus\:via-gray-500:focus { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); + } + + .\32xl\:focus\:via-gray-600:focus { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); + } + + .\32xl\:focus\:via-gray-700:focus { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); + } + + .\32xl\:focus\:via-gray-800:focus { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); + } + + .\32xl\:focus\:via-gray-900:focus { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); + } + + .\32xl\:focus\:to-current:focus { + --tw-gradient-to: currentColor; + } + + .\32xl\:focus\:to-transparent:focus { + --tw-gradient-to: transparent; + } + + .\32xl\:focus\:to-black:focus { + --tw-gradient-to: #000; + } + + .\32xl\:focus\:to-white:focus { + --tw-gradient-to: #fff; + } + + .\32xl\:focus\:to-darkCoolGray-50:focus { + --tw-gradient-to: #F5F6F7; + } + + .\32xl\:focus\:to-darkCoolGray-100:focus { + --tw-gradient-to: #EBEDEF; + } + + .\32xl\:focus\:to-darkCoolGray-200:focus { + --tw-gradient-to: #CED1D6; + } + + .\32xl\:focus\:to-darkCoolGray-300:focus { + --tw-gradient-to: #B0B5BD; + } + + .\32xl\:focus\:to-darkCoolGray-400:focus { + --tw-gradient-to: #757E8C; + } + + .\32xl\:focus\:to-darkCoolGray-500:focus { + --tw-gradient-to: #3A475B; + } + + .\32xl\:focus\:to-darkCoolGray-600:focus { + --tw-gradient-to: #344052; + } + + .\32xl\:focus\:to-darkCoolGray-700:focus { + --tw-gradient-to: #2C3544; + } + + .\32xl\:focus\:to-darkCoolGray-800:focus { + --tw-gradient-to: #232B37; + } + + .\32xl\:focus\:to-darkCoolGray-900:focus { + --tw-gradient-to: #1C232D; + } + + .\32xl\:focus\:to-coolGray-50:focus { + --tw-gradient-to: #F7F8F9; + } + + .\32xl\:focus\:to-coolGray-100:focus { + --tw-gradient-to: #EEF0F3; + } + + .\32xl\:focus\:to-coolGray-200:focus { + --tw-gradient-to: #D5DAE1; + } + + .\32xl\:focus\:to-coolGray-300:focus { + --tw-gradient-to: #BBC3CF; + } + + .\32xl\:focus\:to-coolGray-400:focus { + --tw-gradient-to: #8896AB; + } + + .\32xl\:focus\:to-coolGray-500:focus { + --tw-gradient-to: #556987; + } + + .\32xl\:focus\:to-coolGray-600:focus { + --tw-gradient-to: #4D5F7A; + } + + .\32xl\:focus\:to-coolGray-700:focus { + --tw-gradient-to: #404F65; + } + + .\32xl\:focus\:to-coolGray-800:focus { + --tw-gradient-to: #333F51; + } + + .\32xl\:focus\:to-coolGray-900:focus { + --tw-gradient-to: #2A3342; + } + + .\32xl\:focus\:to-indigo-50:focus { + --tw-gradient-to: #F8F6FF; + } + + .\32xl\:focus\:to-indigo-100:focus { + --tw-gradient-to: #F0EEFF; + } + + .\32xl\:focus\:to-indigo-200:focus { + --tw-gradient-to: #DAD4FF; + } + + .\32xl\:focus\:to-indigo-300:focus { + --tw-gradient-to: #C3B9FF; + } + + .\32xl\:focus\:to-indigo-400:focus { + --tw-gradient-to: #9685FF; + } + + .\32xl\:focus\:to-indigo-500:focus { + --tw-gradient-to: #6951FF; + } + + .\32xl\:focus\:to-indigo-600:focus { + --tw-gradient-to: #5F49E6; + } + + .\32xl\:focus\:to-indigo-700:focus { + --tw-gradient-to: #4F3DBF; + } + + .\32xl\:focus\:to-indigo-800:focus { + --tw-gradient-to: #3F3199; + } + + .\32xl\:focus\:to-indigo-900:focus { + --tw-gradient-to: #33287D; + } + + .\32xl\:focus\:to-violet-50:focus { + --tw-gradient-to: #FBF7FF; + } + + .\32xl\:focus\:to-violet-100:focus { + --tw-gradient-to: #F6EEFE; + } + + .\32xl\:focus\:to-violet-200:focus { + --tw-gradient-to: #E9D5FD; + } + + .\32xl\:focus\:to-violet-300:focus { + --tw-gradient-to: #DCBBFC; + } + + .\32xl\:focus\:to-violet-400:focus { + --tw-gradient-to: #C288F9; + } + + .\32xl\:focus\:to-violet-500:focus { + --tw-gradient-to: #A855F7; + } + + .\32xl\:focus\:to-violet-600:focus { + --tw-gradient-to: #974DDE; + } + + .\32xl\:focus\:to-violet-700:focus { + --tw-gradient-to: #7E40B9; + } + + .\32xl\:focus\:to-violet-800:focus { + --tw-gradient-to: #653394; + } + + .\32xl\:focus\:to-violet-900:focus { + --tw-gradient-to: #522A79; + } + + .\32xl\:focus\:to-yellow-50:focus { + --tw-gradient-to: #FFFAF3; + } + + .\32xl\:focus\:to-yellow-100:focus { + --tw-gradient-to: #FEF5E7; + } + + .\32xl\:focus\:to-yellow-200:focus { + --tw-gradient-to: #FDE7C2; + } + + .\32xl\:focus\:to-yellow-300:focus { + --tw-gradient-to: #FBD89D; + } + + .\32xl\:focus\:to-yellow-400:focus { + --tw-gradient-to: #F8BB54; + } + + .\32xl\:focus\:to-yellow-500:focus { + --tw-gradient-to: #F59E0B; + } + + .\32xl\:focus\:to-yellow-600:focus { + --tw-gradient-to: #DD8E0A; + } + + .\32xl\:focus\:to-yellow-700:focus { + --tw-gradient-to: #B87708; + } + + .\32xl\:focus\:to-yellow-800:focus { + --tw-gradient-to: #935F07; + } + + .\32xl\:focus\:to-yellow-900:focus { + --tw-gradient-to: #784D05; + } + + .\32xl\:focus\:to-red-50:focus { + --tw-gradient-to: #FEF7F6; + } + + .\32xl\:focus\:to-red-100:focus { + --tw-gradient-to: #FDEEEC; + } + + .\32xl\:focus\:to-red-200:focus { + --tw-gradient-to: #FBD6D0; + } + + .\32xl\:focus\:to-red-300:focus { + --tw-gradient-to: #F9BDB4; + } + + .\32xl\:focus\:to-red-400:focus { + --tw-gradient-to: #F48B7C; + } + + .\32xl\:focus\:to-red-500:focus { + --tw-gradient-to: #EF5844; + } + + .\32xl\:focus\:to-red-600:focus { + --tw-gradient-to: #D7503D; + } + + .\32xl\:focus\:to-red-700:focus { + --tw-gradient-to: #B34333; + } + + .\32xl\:focus\:to-red-800:focus { + --tw-gradient-to: #8F3529; + } + + .\32xl\:focus\:to-red-900:focus { + --tw-gradient-to: #752C21; + } + + .\32xl\:focus\:to-green-50:focus { + --tw-gradient-to: #F4FDF7; + } + + .\32xl\:focus\:to-green-100:focus { + --tw-gradient-to: #EAFAF0; + } + + .\32xl\:focus\:to-green-200:focus { + --tw-gradient-to: #CAF4D9; + } + + .\32xl\:focus\:to-green-300:focus { + --tw-gradient-to: #AAEDC3; + } + + .\32xl\:focus\:to-green-400:focus { + --tw-gradient-to: #6ADF95; + } + + .\32xl\:focus\:to-green-500:focus { + --tw-gradient-to: #2AD167; + } + + .\32xl\:focus\:to-green-600:focus { + --tw-gradient-to: #26BC5E; + } + + .\32xl\:focus\:to-green-700:focus { + --tw-gradient-to: #209D4E; + } + + .\32xl\:focus\:to-green-800:focus { + --tw-gradient-to: #197D3E; + } + + .\32xl\:focus\:to-green-900:focus { + --tw-gradient-to: #156633; + } + + .\32xl\:focus\:to-blue-50:focus { + --tw-gradient-to: #F5F9FF; + } + + .\32xl\:focus\:to-blue-100:focus { + --tw-gradient-to: #EBF3FE; + } + + .\32xl\:focus\:to-blue-200:focus { + --tw-gradient-to: #CEE0FD; + } + + .\32xl\:focus\:to-blue-300:focus { + --tw-gradient-to: #B1CDFB; + } + + .\32xl\:focus\:to-blue-400:focus { + --tw-gradient-to: #76A8F9; + } + + .\32xl\:focus\:to-blue-500:focus { + --tw-gradient-to: #3B82F6; + } + + .\32xl\:focus\:to-blue-600:focus { + --tw-gradient-to: #3575DD; + } + + .\32xl\:focus\:to-blue-700:focus { + --tw-gradient-to: #2C62B9; + } + + .\32xl\:focus\:to-blue-800:focus { + --tw-gradient-to: #234E94; + } + + .\32xl\:focus\:to-blue-900:focus { + --tw-gradient-to: #1D4079; + } + + .\32xl\:focus\:to-gray-50:focus { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:focus\:to-gray-100:focus { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:focus\:to-gray-200:focus { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:focus\:to-gray-300:focus { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:focus\:to-gray-400:focus { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:focus\:to-gray-500:focus { + --tw-gradient-to: #6b7280; + } + + .\32xl\:focus\:to-gray-600:focus { + --tw-gradient-to: #4b5563; + } + + .\32xl\:focus\:to-gray-700:focus { + --tw-gradient-to: #374151; + } + + .\32xl\:focus\:to-gray-800:focus { + --tw-gradient-to: #1f2937; + } + + .\32xl\:focus\:to-gray-900:focus { + --tw-gradient-to: #111827; + } + + .\32xl\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .\32xl\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .\32xl\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .\32xl\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .\32xl\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .\32xl\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .\32xl\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .\32xl\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .\32xl\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .\32xl\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .\32xl\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .\32xl\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .\32xl\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .\32xl\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .\32xl\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-0 { + --tw-bg-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-5 { + --tw-bg-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-10 { + --tw-bg-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-20 { + --tw-bg-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-25 { + --tw-bg-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-30 { + --tw-bg-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-40 { + --tw-bg-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-50 { + --tw-bg-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-60 { + --tw-bg-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-70 { + --tw-bg-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-75 { + --tw-bg-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-80 { + --tw-bg-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-90 { + --tw-bg-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-95 { + --tw-bg-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:bg-opacity-100 { + --tw-bg-opacity: 1; + } + + .\32xl\:focus-within\:bg-opacity-0:focus-within { + --tw-bg-opacity: 0; + } + + .\32xl\:focus-within\:bg-opacity-5:focus-within { + --tw-bg-opacity: 0.05; + } + + .\32xl\:focus-within\:bg-opacity-10:focus-within { + --tw-bg-opacity: 0.1; + } + + .\32xl\:focus-within\:bg-opacity-20:focus-within { + --tw-bg-opacity: 0.2; + } + + .\32xl\:focus-within\:bg-opacity-25:focus-within { + --tw-bg-opacity: 0.25; + } + + .\32xl\:focus-within\:bg-opacity-30:focus-within { + --tw-bg-opacity: 0.3; + } + + .\32xl\:focus-within\:bg-opacity-40:focus-within { + --tw-bg-opacity: 0.4; + } + + .\32xl\:focus-within\:bg-opacity-50:focus-within { + --tw-bg-opacity: 0.5; + } + + .\32xl\:focus-within\:bg-opacity-60:focus-within { + --tw-bg-opacity: 0.6; + } + + .\32xl\:focus-within\:bg-opacity-70:focus-within { + --tw-bg-opacity: 0.7; + } + + .\32xl\:focus-within\:bg-opacity-75:focus-within { + --tw-bg-opacity: 0.75; + } + + .\32xl\:focus-within\:bg-opacity-80:focus-within { + --tw-bg-opacity: 0.8; + } + + .\32xl\:focus-within\:bg-opacity-90:focus-within { + --tw-bg-opacity: 0.9; + } + + .\32xl\:focus-within\:bg-opacity-95:focus-within { + --tw-bg-opacity: 0.95; + } + + .\32xl\:focus-within\:bg-opacity-100:focus-within { + --tw-bg-opacity: 1; + } + + .\32xl\:hover\:bg-opacity-0:hover { + --tw-bg-opacity: 0; + } + + .\32xl\:hover\:bg-opacity-5:hover { + --tw-bg-opacity: 0.05; + } + + .\32xl\:hover\:bg-opacity-10:hover { + --tw-bg-opacity: 0.1; + } + + .\32xl\:hover\:bg-opacity-20:hover { + --tw-bg-opacity: 0.2; + } + + .\32xl\:hover\:bg-opacity-25:hover { + --tw-bg-opacity: 0.25; + } + + .\32xl\:hover\:bg-opacity-30:hover { + --tw-bg-opacity: 0.3; + } + + .\32xl\:hover\:bg-opacity-40:hover { + --tw-bg-opacity: 0.4; + } + + .\32xl\:hover\:bg-opacity-50:hover { + --tw-bg-opacity: 0.5; + } + + .\32xl\:hover\:bg-opacity-60:hover { + --tw-bg-opacity: 0.6; + } + + .\32xl\:hover\:bg-opacity-70:hover { + --tw-bg-opacity: 0.7; + } + + .\32xl\:hover\:bg-opacity-75:hover { + --tw-bg-opacity: 0.75; + } + + .\32xl\:hover\:bg-opacity-80:hover { + --tw-bg-opacity: 0.8; + } + + .\32xl\:hover\:bg-opacity-90:hover { + --tw-bg-opacity: 0.9; + } + + .\32xl\:hover\:bg-opacity-95:hover { + --tw-bg-opacity: 0.95; + } + + .\32xl\:hover\:bg-opacity-100:hover { + --tw-bg-opacity: 1; + } + + .\32xl\:focus\:bg-opacity-0:focus { + --tw-bg-opacity: 0; + } + + .\32xl\:focus\:bg-opacity-5:focus { + --tw-bg-opacity: 0.05; + } + + .\32xl\:focus\:bg-opacity-10:focus { + --tw-bg-opacity: 0.1; + } + + .\32xl\:focus\:bg-opacity-20:focus { + --tw-bg-opacity: 0.2; + } + + .\32xl\:focus\:bg-opacity-25:focus { + --tw-bg-opacity: 0.25; + } + + .\32xl\:focus\:bg-opacity-30:focus { + --tw-bg-opacity: 0.3; + } + + .\32xl\:focus\:bg-opacity-40:focus { + --tw-bg-opacity: 0.4; + } + + .\32xl\:focus\:bg-opacity-50:focus { + --tw-bg-opacity: 0.5; + } + + .\32xl\:focus\:bg-opacity-60:focus { + --tw-bg-opacity: 0.6; + } + + .\32xl\:focus\:bg-opacity-70:focus { + --tw-bg-opacity: 0.7; + } + + .\32xl\:focus\:bg-opacity-75:focus { + --tw-bg-opacity: 0.75; + } + + .\32xl\:focus\:bg-opacity-80:focus { + --tw-bg-opacity: 0.8; + } + + .\32xl\:focus\:bg-opacity-90:focus { + --tw-bg-opacity: 0.9; + } + + .\32xl\:focus\:bg-opacity-95:focus { + --tw-bg-opacity: 0.95; + } + + .\32xl\:focus\:bg-opacity-100:focus { + --tw-bg-opacity: 1; + } + + .\32xl\:bg-bottom { + background-position: bottom; + } + + .\32xl\:bg-center { + background-position: center; + } + + .\32xl\:bg-left { + background-position: left; + } + + .\32xl\:bg-left-bottom { + background-position: left bottom; + } + + .\32xl\:bg-left-top { + background-position: left top; + } + + .\32xl\:bg-right { + background-position: right; + } + + .\32xl\:bg-right-bottom { + background-position: right bottom; + } + + .\32xl\:bg-right-top { + background-position: right top; + } + + .\32xl\:bg-top { + background-position: top; + } + + .\32xl\:bg-repeat { + background-repeat: repeat; + } + + .\32xl\:bg-no-repeat { + background-repeat: no-repeat; + } + + .\32xl\:bg-repeat-x { + background-repeat: repeat-x; + } + + .\32xl\:bg-repeat-y { + background-repeat: repeat-y; + } + + .\32xl\:bg-repeat-round { + background-repeat: round; + } + + .\32xl\:bg-repeat-space { + background-repeat: space; + } + + .\32xl\:bg-auto { + background-size: auto; + } + + .\32xl\:bg-cover { + background-size: cover; + } + + .\32xl\:bg-contain { + background-size: contain; + } + + .\32xl\:border-collapse { + border-collapse: collapse; + } + + .\32xl\:border-separate { + border-collapse: separate; + } + + .\32xl\:border-current { + border-color: currentColor; + } + + .\32xl\:border-transparent { + border-color: transparent; + } + + .\32xl\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-current { + border-color: currentColor; + } + + .group:hover .\32xl\:group-hover\:border-transparent { + border-color: transparent; + } + + .group:hover .\32xl\:group-hover\:border-black { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-white { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-darkCoolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-50 { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-100 { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-200 { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-300 { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-400 { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-500 { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-600 { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-700 { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-800 { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-coolGray-900 { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-50 { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-100 { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-200 { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-300 { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-400 { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-500 { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-600 { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-700 { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-800 { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-indigo-900 { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-50 { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-100 { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-200 { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-300 { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-400 { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-500 { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-600 { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-700 { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-800 { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-violet-900 { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-50 { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-100 { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-200 { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-300 { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-400 { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-500 { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-600 { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-700 { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-800 { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-yellow-900 { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-50 { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-100 { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-200 { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-400 { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-500 { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-600 { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-700 { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-800 { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-red-900 { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-50 { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-100 { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-200 { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-300 { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-400 { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-500 { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-600 { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-700 { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-800 { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-green-900 { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-50 { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-100 { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-200 { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-300 { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-400 { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-500 { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-600 { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-700 { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-800 { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-blue-900 { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-50 { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-100 { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-200 { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-300 { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-400 { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-600 { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-700 { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-800 { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .group:hover .\32xl\:group-hover\:border-gray-900 { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-current:focus-within { + border-color: currentColor; + } + + .\32xl\:focus-within\:border-transparent:focus-within { + border-color: transparent; + } + + .\32xl\:focus-within\:border-black:focus-within { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-white:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-darkCoolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-coolGray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-indigo-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-violet-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-yellow-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-red-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-green-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-blue-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-50:focus-within { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-100:focus-within { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-200:focus-within { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-300:focus-within { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-400:focus-within { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-500:focus-within { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-600:focus-within { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-700:focus-within { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-800:focus-within { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus-within\:border-gray-900:focus-within { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-current:hover { + border-color: currentColor; + } + + .\32xl\:hover\:border-transparent:hover { + border-color: transparent; + } + + .\32xl\:hover\:border-black:hover { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-white:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-darkCoolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-coolGray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-50:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-100:hover { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-200:hover { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-300:hover { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-400:hover { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-500:hover { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-600:hover { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-700:hover { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-800:hover { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-indigo-900:hover { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-50:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-100:hover { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-200:hover { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-300:hover { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-400:hover { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-500:hover { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-600:hover { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-700:hover { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-800:hover { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-violet-900:hover { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-50:hover { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-100:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-200:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-300:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-400:hover { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-500:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-600:hover { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-700:hover { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-800:hover { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-yellow-900:hover { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-50:hover { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-100:hover { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-200:hover { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-300:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-400:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-500:hover { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-600:hover { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-700:hover { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-800:hover { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-red-900:hover { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-50:hover { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-100:hover { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-200:hover { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-300:hover { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-400:hover { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-500:hover { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-600:hover { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-700:hover { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-800:hover { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-green-900:hover { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-50:hover { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-100:hover { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-200:hover { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-300:hover { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-400:hover { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-500:hover { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-600:hover { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-700:hover { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-800:hover { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-blue-900:hover { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-50:hover { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-100:hover { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-200:hover { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-300:hover { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-400:hover { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-500:hover { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-600:hover { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-700:hover { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-800:hover { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:hover\:border-gray-900:hover { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-current:focus { + border-color: currentColor; + } + + .\32xl\:focus\:border-transparent:focus { + border-color: transparent; + } + + .\32xl\:focus\:border-black:focus { + --tw-border-opacity: 1; + border-color: rgba(0, 0, 0, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-white:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 255, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 246, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 237, 239, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 209, 214, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(176, 181, 189, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 126, 140, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(58, 71, 91, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(52, 64, 82, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 53, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 43, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-darkCoolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(28, 35, 45, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(247, 248, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(238, 240, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(213, 218, 225, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(187, 195, 207, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(136, 150, 171, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(85, 105, 135, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(77, 95, 122, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(64, 79, 101, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 63, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-coolGray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 51, 66, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-50:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 246, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-100:focus { + --tw-border-opacity: 1; + border-color: rgba(240, 238, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-200:focus { + --tw-border-opacity: 1; + border-color: rgba(218, 212, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-300:focus { + --tw-border-opacity: 1; + border-color: rgba(195, 185, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-400:focus { + --tw-border-opacity: 1; + border-color: rgba(150, 133, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-500:focus { + --tw-border-opacity: 1; + border-color: rgba(105, 81, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-600:focus { + --tw-border-opacity: 1; + border-color: rgba(95, 73, 230, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-700:focus { + --tw-border-opacity: 1; + border-color: rgba(79, 61, 191, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-800:focus { + --tw-border-opacity: 1; + border-color: rgba(63, 49, 153, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-indigo-900:focus { + --tw-border-opacity: 1; + border-color: rgba(51, 40, 125, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-50:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 247, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-100:focus { + --tw-border-opacity: 1; + border-color: rgba(246, 238, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-200:focus { + --tw-border-opacity: 1; + border-color: rgba(233, 213, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-300:focus { + --tw-border-opacity: 1; + border-color: rgba(220, 187, 252, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-400:focus { + --tw-border-opacity: 1; + border-color: rgba(194, 136, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-500:focus { + --tw-border-opacity: 1; + border-color: rgba(168, 85, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-600:focus { + --tw-border-opacity: 1; + border-color: rgba(151, 77, 222, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-700:focus { + --tw-border-opacity: 1; + border-color: rgba(126, 64, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-800:focus { + --tw-border-opacity: 1; + border-color: rgba(101, 51, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-violet-900:focus { + --tw-border-opacity: 1; + border-color: rgba(82, 42, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-50:focus { + --tw-border-opacity: 1; + border-color: rgba(255, 250, 243, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-100:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 245, 231, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-200:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 231, 194, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-300:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 216, 157, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-400:focus { + --tw-border-opacity: 1; + border-color: rgba(248, 187, 84, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-500:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 158, 11, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-600:focus { + --tw-border-opacity: 1; + border-color: rgba(221, 142, 10, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-700:focus { + --tw-border-opacity: 1; + border-color: rgba(184, 119, 8, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-800:focus { + --tw-border-opacity: 1; + border-color: rgba(147, 95, 7, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-yellow-900:focus { + --tw-border-opacity: 1; + border-color: rgba(120, 77, 5, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-50:focus { + --tw-border-opacity: 1; + border-color: rgba(254, 247, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-100:focus { + --tw-border-opacity: 1; + border-color: rgba(253, 238, 236, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-200:focus { + --tw-border-opacity: 1; + border-color: rgba(251, 214, 208, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-300:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 189, 180, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-400:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 139, 124, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-500:focus { + --tw-border-opacity: 1; + border-color: rgba(239, 88, 68, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-600:focus { + --tw-border-opacity: 1; + border-color: rgba(215, 80, 61, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-700:focus { + --tw-border-opacity: 1; + border-color: rgba(179, 67, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-800:focus { + --tw-border-opacity: 1; + border-color: rgba(143, 53, 41, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-red-900:focus { + --tw-border-opacity: 1; + border-color: rgba(117, 44, 33, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-50:focus { + --tw-border-opacity: 1; + border-color: rgba(244, 253, 247, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-100:focus { + --tw-border-opacity: 1; + border-color: rgba(234, 250, 240, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-200:focus { + --tw-border-opacity: 1; + border-color: rgba(202, 244, 217, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-300:focus { + --tw-border-opacity: 1; + border-color: rgba(170, 237, 195, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-400:focus { + --tw-border-opacity: 1; + border-color: rgba(106, 223, 149, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-500:focus { + --tw-border-opacity: 1; + border-color: rgba(42, 209, 103, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-600:focus { + --tw-border-opacity: 1; + border-color: rgba(38, 188, 94, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-700:focus { + --tw-border-opacity: 1; + border-color: rgba(32, 157, 78, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-800:focus { + --tw-border-opacity: 1; + border-color: rgba(25, 125, 62, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-green-900:focus { + --tw-border-opacity: 1; + border-color: rgba(21, 102, 51, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-50:focus { + --tw-border-opacity: 1; + border-color: rgba(245, 249, 255, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-100:focus { + --tw-border-opacity: 1; + border-color: rgba(235, 243, 254, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-200:focus { + --tw-border-opacity: 1; + border-color: rgba(206, 224, 253, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-300:focus { + --tw-border-opacity: 1; + border-color: rgba(177, 205, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-400:focus { + --tw-border-opacity: 1; + border-color: rgba(118, 168, 249, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgba(59, 130, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-600:focus { + --tw-border-opacity: 1; + border-color: rgba(53, 117, 221, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-700:focus { + --tw-border-opacity: 1; + border-color: rgba(44, 98, 185, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-800:focus { + --tw-border-opacity: 1; + border-color: rgba(35, 78, 148, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-blue-900:focus { + --tw-border-opacity: 1; + border-color: rgba(29, 64, 121, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-50:focus { + --tw-border-opacity: 1; + border-color: rgba(249, 250, 251, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-100:focus { + --tw-border-opacity: 1; + border-color: rgba(243, 244, 246, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-200:focus { + --tw-border-opacity: 1; + border-color: rgba(229, 231, 235, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-300:focus { + --tw-border-opacity: 1; + border-color: rgba(209, 213, 219, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-400:focus { + --tw-border-opacity: 1; + border-color: rgba(156, 163, 175, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-500:focus { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-600:focus { + --tw-border-opacity: 1; + border-color: rgba(75, 85, 99, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-700:focus { + --tw-border-opacity: 1; + border-color: rgba(55, 65, 81, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-800:focus { + --tw-border-opacity: 1; + border-color: rgba(31, 41, 55, var(--tw-border-opacity)); + } + + .\32xl\:focus\:border-gray-900:focus { + --tw-border-opacity: 1; + border-color: rgba(17, 24, 39, var(--tw-border-opacity)); + } + + .\32xl\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .\32xl\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .\32xl\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .\32xl\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .\32xl\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .\32xl\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .\32xl\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .\32xl\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .\32xl\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .\32xl\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .\32xl\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .\32xl\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .\32xl\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .\32xl\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .\32xl\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:border-opacity-0 { + --tw-border-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:border-opacity-5 { + --tw-border-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:border-opacity-10 { + --tw-border-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:border-opacity-20 { + --tw-border-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:border-opacity-25 { + --tw-border-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:border-opacity-30 { + --tw-border-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:border-opacity-40 { + --tw-border-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:border-opacity-50 { + --tw-border-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:border-opacity-60 { + --tw-border-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:border-opacity-70 { + --tw-border-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:border-opacity-75 { + --tw-border-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:border-opacity-80 { + --tw-border-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:border-opacity-90 { + --tw-border-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:border-opacity-95 { + --tw-border-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:border-opacity-100 { + --tw-border-opacity: 1; + } + + .\32xl\:focus-within\:border-opacity-0:focus-within { + --tw-border-opacity: 0; + } + + .\32xl\:focus-within\:border-opacity-5:focus-within { + --tw-border-opacity: 0.05; + } + + .\32xl\:focus-within\:border-opacity-10:focus-within { + --tw-border-opacity: 0.1; + } + + .\32xl\:focus-within\:border-opacity-20:focus-within { + --tw-border-opacity: 0.2; + } + + .\32xl\:focus-within\:border-opacity-25:focus-within { + --tw-border-opacity: 0.25; + } + + .\32xl\:focus-within\:border-opacity-30:focus-within { + --tw-border-opacity: 0.3; + } + + .\32xl\:focus-within\:border-opacity-40:focus-within { + --tw-border-opacity: 0.4; + } + + .\32xl\:focus-within\:border-opacity-50:focus-within { + --tw-border-opacity: 0.5; + } + + .\32xl\:focus-within\:border-opacity-60:focus-within { + --tw-border-opacity: 0.6; + } + + .\32xl\:focus-within\:border-opacity-70:focus-within { + --tw-border-opacity: 0.7; + } + + .\32xl\:focus-within\:border-opacity-75:focus-within { + --tw-border-opacity: 0.75; + } + + .\32xl\:focus-within\:border-opacity-80:focus-within { + --tw-border-opacity: 0.8; + } + + .\32xl\:focus-within\:border-opacity-90:focus-within { + --tw-border-opacity: 0.9; + } + + .\32xl\:focus-within\:border-opacity-95:focus-within { + --tw-border-opacity: 0.95; + } + + .\32xl\:focus-within\:border-opacity-100:focus-within { + --tw-border-opacity: 1; + } + + .\32xl\:hover\:border-opacity-0:hover { + --tw-border-opacity: 0; + } + + .\32xl\:hover\:border-opacity-5:hover { + --tw-border-opacity: 0.05; + } + + .\32xl\:hover\:border-opacity-10:hover { + --tw-border-opacity: 0.1; + } + + .\32xl\:hover\:border-opacity-20:hover { + --tw-border-opacity: 0.2; + } + + .\32xl\:hover\:border-opacity-25:hover { + --tw-border-opacity: 0.25; + } + + .\32xl\:hover\:border-opacity-30:hover { + --tw-border-opacity: 0.3; + } + + .\32xl\:hover\:border-opacity-40:hover { + --tw-border-opacity: 0.4; + } + + .\32xl\:hover\:border-opacity-50:hover { + --tw-border-opacity: 0.5; + } + + .\32xl\:hover\:border-opacity-60:hover { + --tw-border-opacity: 0.6; + } + + .\32xl\:hover\:border-opacity-70:hover { + --tw-border-opacity: 0.7; + } + + .\32xl\:hover\:border-opacity-75:hover { + --tw-border-opacity: 0.75; + } + + .\32xl\:hover\:border-opacity-80:hover { + --tw-border-opacity: 0.8; + } + + .\32xl\:hover\:border-opacity-90:hover { + --tw-border-opacity: 0.9; + } + + .\32xl\:hover\:border-opacity-95:hover { + --tw-border-opacity: 0.95; + } + + .\32xl\:hover\:border-opacity-100:hover { + --tw-border-opacity: 1; + } + + .\32xl\:focus\:border-opacity-0:focus { + --tw-border-opacity: 0; + } + + .\32xl\:focus\:border-opacity-5:focus { + --tw-border-opacity: 0.05; + } + + .\32xl\:focus\:border-opacity-10:focus { + --tw-border-opacity: 0.1; + } + + .\32xl\:focus\:border-opacity-20:focus { + --tw-border-opacity: 0.2; + } + + .\32xl\:focus\:border-opacity-25:focus { + --tw-border-opacity: 0.25; + } + + .\32xl\:focus\:border-opacity-30:focus { + --tw-border-opacity: 0.3; + } + + .\32xl\:focus\:border-opacity-40:focus { + --tw-border-opacity: 0.4; + } + + .\32xl\:focus\:border-opacity-50:focus { + --tw-border-opacity: 0.5; + } + + .\32xl\:focus\:border-opacity-60:focus { + --tw-border-opacity: 0.6; + } + + .\32xl\:focus\:border-opacity-70:focus { + --tw-border-opacity: 0.7; + } + + .\32xl\:focus\:border-opacity-75:focus { + --tw-border-opacity: 0.75; + } + + .\32xl\:focus\:border-opacity-80:focus { + --tw-border-opacity: 0.8; + } + + .\32xl\:focus\:border-opacity-90:focus { + --tw-border-opacity: 0.9; + } + + .\32xl\:focus\:border-opacity-95:focus { + --tw-border-opacity: 0.95; + } + + .\32xl\:focus\:border-opacity-100:focus { + --tw-border-opacity: 1; + } + + .\32xl\:rounded-none { + border-radius: 0; + } + + .\32xl\:rounded-sm { + border-radius: 0.125rem; + } + + .\32xl\:rounded { + border-radius: 0.25rem; + } + + .\32xl\:rounded-md { + border-radius: 0.375rem; + } + + .\32xl\:rounded-lg { + border-radius: 0.5rem; + } + + .\32xl\:rounded-xl { + border-radius: 0.675rem; + } + + .\32xl\:rounded-2xl { + border-radius: 0.75rem; + } + + .\32xl\:rounded-3xl { + border-radius: 0.875rem; + } + + .\32xl\:rounded-4xl { + border-radius: 1rem; + } + + .\32xl\:rounded-5xl { + border-radius: 1.25rem; + } + + .\32xl\:rounded-6xl { + border-radius: 1.375rem; + } + + .\32xl\:rounded-7xl { + border-radius: 1.5rem; + } + + .\32xl\:rounded-8xl { + border-radius: 2rem; + } + + .\32xl\:rounded-9xl { + border-radius: 2.25rem; + } + + .\32xl\:rounded-10xl { + border-radius: 2.5rem; + } + + .\32xl\:rounded-11xl { + border-radius: 5rem; + } + + .\32xl\:rounded-full { + border-radius: 9999px; + } + + .\32xl\:rounded-t-none { + border-top-left-radius: 0; + border-top-right-radius: 0; + } + + .\32xl\:rounded-r-none { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + .\32xl\:rounded-b-none { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; + } + + .\32xl\:rounded-l-none { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .\32xl\:rounded-t-sm { + border-top-left-radius: 0.125rem; + border-top-right-radius: 0.125rem; + } + + .\32xl\:rounded-r-sm { + border-top-right-radius: 0.125rem; + border-bottom-right-radius: 0.125rem; + } + + .\32xl\:rounded-b-sm { + border-bottom-right-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-l-sm { + border-top-left-radius: 0.125rem; + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-t { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; + } + + .\32xl\:rounded-r { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; + } + + .\32xl\:rounded-b { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-t-md { + border-top-left-radius: 0.375rem; + border-top-right-radius: 0.375rem; + } + + .\32xl\:rounded-r-md { + border-top-right-radius: 0.375rem; + border-bottom-right-radius: 0.375rem; + } + + .\32xl\:rounded-b-md { + border-bottom-right-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-l-md { + border-top-left-radius: 0.375rem; + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; + } + + .\32xl\:rounded-r-lg { + border-top-right-radius: 0.5rem; + border-bottom-right-radius: 0.5rem; + } + + .\32xl\:rounded-b-lg { + border-bottom-right-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-l-lg { + border-top-left-radius: 0.5rem; + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-t-xl { + border-top-left-radius: 0.675rem; + border-top-right-radius: 0.675rem; + } + + .\32xl\:rounded-r-xl { + border-top-right-radius: 0.675rem; + border-bottom-right-radius: 0.675rem; + } + + .\32xl\:rounded-b-xl { + border-bottom-right-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .\32xl\:rounded-l-xl { + border-top-left-radius: 0.675rem; + border-bottom-left-radius: 0.675rem; + } + + .\32xl\:rounded-t-2xl { + border-top-left-radius: 0.75rem; + border-top-right-radius: 0.75rem; + } + + .\32xl\:rounded-r-2xl { + border-top-right-radius: 0.75rem; + border-bottom-right-radius: 0.75rem; + } + + .\32xl\:rounded-b-2xl { + border-bottom-right-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-l-2xl { + border-top-left-radius: 0.75rem; + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-t-3xl { + border-top-left-radius: 0.875rem; + border-top-right-radius: 0.875rem; + } + + .\32xl\:rounded-r-3xl { + border-top-right-radius: 0.875rem; + border-bottom-right-radius: 0.875rem; + } + + .\32xl\:rounded-b-3xl { + border-bottom-right-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .\32xl\:rounded-l-3xl { + border-top-left-radius: 0.875rem; + border-bottom-left-radius: 0.875rem; + } + + .\32xl\:rounded-t-4xl { + border-top-left-radius: 1rem; + border-top-right-radius: 1rem; + } + + .\32xl\:rounded-r-4xl { + border-top-right-radius: 1rem; + border-bottom-right-radius: 1rem; + } + + .\32xl\:rounded-b-4xl { + border-bottom-right-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-l-4xl { + border-top-left-radius: 1rem; + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-t-5xl { + border-top-left-radius: 1.25rem; + border-top-right-radius: 1.25rem; + } + + .\32xl\:rounded-r-5xl { + border-top-right-radius: 1.25rem; + border-bottom-right-radius: 1.25rem; + } + + .\32xl\:rounded-b-5xl { + border-bottom-right-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .\32xl\:rounded-l-5xl { + border-top-left-radius: 1.25rem; + border-bottom-left-radius: 1.25rem; + } + + .\32xl\:rounded-t-6xl { + border-top-left-radius: 1.375rem; + border-top-right-radius: 1.375rem; + } + + .\32xl\:rounded-r-6xl { + border-top-right-radius: 1.375rem; + border-bottom-right-radius: 1.375rem; + } + + .\32xl\:rounded-b-6xl { + border-bottom-right-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .\32xl\:rounded-l-6xl { + border-top-left-radius: 1.375rem; + border-bottom-left-radius: 1.375rem; + } + + .\32xl\:rounded-t-7xl { + border-top-left-radius: 1.5rem; + border-top-right-radius: 1.5rem; + } + + .\32xl\:rounded-r-7xl { + border-top-right-radius: 1.5rem; + border-bottom-right-radius: 1.5rem; + } + + .\32xl\:rounded-b-7xl { + border-bottom-right-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-l-7xl { + border-top-left-radius: 1.5rem; + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-t-8xl { + border-top-left-radius: 2rem; + border-top-right-radius: 2rem; + } + + .\32xl\:rounded-r-8xl { + border-top-right-radius: 2rem; + border-bottom-right-radius: 2rem; + } + + .\32xl\:rounded-b-8xl { + border-bottom-right-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .\32xl\:rounded-l-8xl { + border-top-left-radius: 2rem; + border-bottom-left-radius: 2rem; + } + + .\32xl\:rounded-t-9xl { + border-top-left-radius: 2.25rem; + border-top-right-radius: 2.25rem; + } + + .\32xl\:rounded-r-9xl { + border-top-right-radius: 2.25rem; + border-bottom-right-radius: 2.25rem; + } + + .\32xl\:rounded-b-9xl { + border-bottom-right-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .\32xl\:rounded-l-9xl { + border-top-left-radius: 2.25rem; + border-bottom-left-radius: 2.25rem; + } + + .\32xl\:rounded-t-10xl { + border-top-left-radius: 2.5rem; + border-top-right-radius: 2.5rem; + } + + .\32xl\:rounded-r-10xl { + border-top-right-radius: 2.5rem; + border-bottom-right-radius: 2.5rem; + } + + .\32xl\:rounded-b-10xl { + border-bottom-right-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .\32xl\:rounded-l-10xl { + border-top-left-radius: 2.5rem; + border-bottom-left-radius: 2.5rem; + } + + .\32xl\:rounded-t-11xl { + border-top-left-radius: 5rem; + border-top-right-radius: 5rem; + } + + .\32xl\:rounded-r-11xl { + border-top-right-radius: 5rem; + border-bottom-right-radius: 5rem; + } + + .\32xl\:rounded-b-11xl { + border-bottom-right-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .\32xl\:rounded-l-11xl { + border-top-left-radius: 5rem; + border-bottom-left-radius: 5rem; + } + + .\32xl\:rounded-t-full { + border-top-left-radius: 9999px; + border-top-right-radius: 9999px; + } + + .\32xl\:rounded-r-full { + border-top-right-radius: 9999px; + border-bottom-right-radius: 9999px; + } + + .\32xl\:rounded-b-full { + border-bottom-right-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .\32xl\:rounded-l-full { + border-top-left-radius: 9999px; + border-bottom-left-radius: 9999px; + } + + .\32xl\:rounded-tl-none { + border-top-left-radius: 0; + } + + .\32xl\:rounded-tr-none { + border-top-right-radius: 0; + } + + .\32xl\:rounded-br-none { + border-bottom-right-radius: 0; + } + + .\32xl\:rounded-bl-none { + border-bottom-left-radius: 0; + } + + .\32xl\:rounded-tl-sm { + border-top-left-radius: 0.125rem; + } + + .\32xl\:rounded-tr-sm { + border-top-right-radius: 0.125rem; + } + + .\32xl\:rounded-br-sm { + border-bottom-right-radius: 0.125rem; + } + + .\32xl\:rounded-bl-sm { + border-bottom-left-radius: 0.125rem; + } + + .\32xl\:rounded-tl { + border-top-left-radius: 0.25rem; + } + + .\32xl\:rounded-tr { + border-top-right-radius: 0.25rem; + } + + .\32xl\:rounded-br { + border-bottom-right-radius: 0.25rem; + } + + .\32xl\:rounded-bl { + border-bottom-left-radius: 0.25rem; + } + + .\32xl\:rounded-tl-md { + border-top-left-radius: 0.375rem; + } + + .\32xl\:rounded-tr-md { + border-top-right-radius: 0.375rem; + } + + .\32xl\:rounded-br-md { + border-bottom-right-radius: 0.375rem; + } + + .\32xl\:rounded-bl-md { + border-bottom-left-radius: 0.375rem; + } + + .\32xl\:rounded-tl-lg { + border-top-left-radius: 0.5rem; + } + + .\32xl\:rounded-tr-lg { + border-top-right-radius: 0.5rem; + } + + .\32xl\:rounded-br-lg { + border-bottom-right-radius: 0.5rem; + } + + .\32xl\:rounded-bl-lg { + border-bottom-left-radius: 0.5rem; + } + + .\32xl\:rounded-tl-xl { + border-top-left-radius: 0.675rem; + } + + .\32xl\:rounded-tr-xl { + border-top-right-radius: 0.675rem; + } + + .\32xl\:rounded-br-xl { + border-bottom-right-radius: 0.675rem; + } + + .\32xl\:rounded-bl-xl { + border-bottom-left-radius: 0.675rem; + } + + .\32xl\:rounded-tl-2xl { + border-top-left-radius: 0.75rem; + } + + .\32xl\:rounded-tr-2xl { + border-top-right-radius: 0.75rem; + } + + .\32xl\:rounded-br-2xl { + border-bottom-right-radius: 0.75rem; + } + + .\32xl\:rounded-bl-2xl { + border-bottom-left-radius: 0.75rem; + } + + .\32xl\:rounded-tl-3xl { + border-top-left-radius: 0.875rem; + } + + .\32xl\:rounded-tr-3xl { + border-top-right-radius: 0.875rem; + } + + .\32xl\:rounded-br-3xl { + border-bottom-right-radius: 0.875rem; + } + + .\32xl\:rounded-bl-3xl { + border-bottom-left-radius: 0.875rem; + } + + .\32xl\:rounded-tl-4xl { + border-top-left-radius: 1rem; + } + + .\32xl\:rounded-tr-4xl { + border-top-right-radius: 1rem; + } + + .\32xl\:rounded-br-4xl { + border-bottom-right-radius: 1rem; + } + + .\32xl\:rounded-bl-4xl { + border-bottom-left-radius: 1rem; + } + + .\32xl\:rounded-tl-5xl { + border-top-left-radius: 1.25rem; + } + + .\32xl\:rounded-tr-5xl { + border-top-right-radius: 1.25rem; + } + + .\32xl\:rounded-br-5xl { + border-bottom-right-radius: 1.25rem; + } + + .\32xl\:rounded-bl-5xl { + border-bottom-left-radius: 1.25rem; + } + + .\32xl\:rounded-tl-6xl { + border-top-left-radius: 1.375rem; + } + + .\32xl\:rounded-tr-6xl { + border-top-right-radius: 1.375rem; + } + + .\32xl\:rounded-br-6xl { + border-bottom-right-radius: 1.375rem; + } + + .\32xl\:rounded-bl-6xl { + border-bottom-left-radius: 1.375rem; + } + + .\32xl\:rounded-tl-7xl { + border-top-left-radius: 1.5rem; + } + + .\32xl\:rounded-tr-7xl { + border-top-right-radius: 1.5rem; + } + + .\32xl\:rounded-br-7xl { + border-bottom-right-radius: 1.5rem; + } + + .\32xl\:rounded-bl-7xl { + border-bottom-left-radius: 1.5rem; + } + + .\32xl\:rounded-tl-8xl { + border-top-left-radius: 2rem; + } + + .\32xl\:rounded-tr-8xl { + border-top-right-radius: 2rem; + } + + .\32xl\:rounded-br-8xl { + border-bottom-right-radius: 2rem; + } + + .\32xl\:rounded-bl-8xl { + border-bottom-left-radius: 2rem; + } + + .\32xl\:rounded-tl-9xl { + border-top-left-radius: 2.25rem; + } + + .\32xl\:rounded-tr-9xl { + border-top-right-radius: 2.25rem; + } + + .\32xl\:rounded-br-9xl { + border-bottom-right-radius: 2.25rem; + } + + .\32xl\:rounded-bl-9xl { + border-bottom-left-radius: 2.25rem; + } + + .\32xl\:rounded-tl-10xl { + border-top-left-radius: 2.5rem; + } + + .\32xl\:rounded-tr-10xl { + border-top-right-radius: 2.5rem; + } + + .\32xl\:rounded-br-10xl { + border-bottom-right-radius: 2.5rem; + } + + .\32xl\:rounded-bl-10xl { + border-bottom-left-radius: 2.5rem; + } + + .\32xl\:rounded-tl-11xl { + border-top-left-radius: 5rem; + } + + .\32xl\:rounded-tr-11xl { + border-top-right-radius: 5rem; + } + + .\32xl\:rounded-br-11xl { + border-bottom-right-radius: 5rem; + } + + .\32xl\:rounded-bl-11xl { + border-bottom-left-radius: 5rem; + } + + .\32xl\:rounded-tl-full { + border-top-left-radius: 9999px; + } + + .\32xl\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .\32xl\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .\32xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .\32xl\:border-solid { + border-style: solid; + } + + .\32xl\:border-dashed { + border-style: dashed; + } + + .\32xl\:border-dotted { + border-style: dotted; + } + + .\32xl\:border-double { + border-style: double; + } + + .\32xl\:border-none { + border-style: none; + } + + .\32xl\:border-0 { + border-width: 0; + } + + .\32xl\:border-2 { + border-width: 2px; + } + + .\32xl\:border-4 { + border-width: 4px; + } + + .\32xl\:border-8 { + border-width: 8px; + } + + .\32xl\:border { + border-width: 1px; + } + + .\32xl\:border-t-0 { + border-top-width: 0; + } + + .\32xl\:border-r-0 { + border-right-width: 0; + } + + .\32xl\:border-b-0 { + border-bottom-width: 0; + } + + .\32xl\:border-l-0 { + border-left-width: 0; + } + + .\32xl\:border-t-2 { + border-top-width: 2px; + } + + .\32xl\:border-r-2 { + border-right-width: 2px; + } + + .\32xl\:border-b-2 { + border-bottom-width: 2px; + } + + .\32xl\:border-l-2 { + border-left-width: 2px; + } + + .\32xl\:border-t-4 { + border-top-width: 4px; + } + + .\32xl\:border-r-4 { + border-right-width: 4px; + } + + .\32xl\:border-b-4 { + border-bottom-width: 4px; + } + + .\32xl\:border-l-4 { + border-left-width: 4px; + } + + .\32xl\:border-t-8 { + border-top-width: 8px; + } + + .\32xl\:border-r-8 { + border-right-width: 8px; + } + + .\32xl\:border-b-8 { + border-bottom-width: 8px; + } + + .\32xl\:border-l-8 { + border-left-width: 8px; + } + + .\32xl\:border-t { + border-top-width: 1px; + } + + .\32xl\:border-r { + border-right-width: 1px; + } + + .\32xl\:border-b { + border-bottom-width: 1px; + } + + .\32xl\:border-l { + border-left-width: 1px; + } + + .\32xl\:box-border { + box-sizing: border-box; + } + + .\32xl\:box-content { + box-sizing: content-box; + } + + .\32xl\:cursor-auto { + cursor: auto; + } + + .\32xl\:cursor { + cursor: default; + } + + .\32xl\:cursor-pointer { + cursor: pointer; + } + + .\32xl\:cursor-wait { + cursor: wait; + } + + .\32xl\:cursor-text { + cursor: text; + } + + .\32xl\:cursor-move { + cursor: move; + } + + .\32xl\:cursor-not-allowed { + cursor: not-allowed; + } + + .\32xl\:block { + display: block; + } + + .\32xl\:inline-block { + display: inline-block; + } + + .\32xl\:inline { + display: inline; + } + + .\32xl\:flex { + display: flex; + } + + .\32xl\:inline-flex { + display: inline-flex; + } + + .\32xl\:table { + display: table; + } + + .\32xl\:table-caption { + display: table-caption; + } + + .\32xl\:table-cell { + display: table-cell; + } + + .\32xl\:table-column { + display: table-column; + } + + .\32xl\:table-column-group { + display: table-column-group; + } + + .\32xl\:table-footer-group { + display: table-footer-group; + } + + .\32xl\:table-header-group { + display: table-header-group; + } + + .\32xl\:table-row-group { + display: table-row-group; + } + + .\32xl\:table-row { + display: table-row; + } + + .\32xl\:flow-root { + display: flow-root; + } + + .\32xl\:grid { + display: grid; + } + + .\32xl\:inline-grid { + display: inline-grid; + } + + .\32xl\:contents { + display: contents; + } + + .\32xl\:hidden { + display: none; + } + + .\32xl\:flex-row { + flex-direction: row; + } + + .\32xl\:flex-row-reverse { + flex-direction: row-reverse; + } + + .\32xl\:flex-col { + flex-direction: column; + } + + .\32xl\:flex-col-reverse { + flex-direction: column-reverse; + } + + .\32xl\:flex-wrap { + flex-wrap: wrap; + } + + .\32xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .\32xl\:flex-nowrap { + flex-wrap: nowrap; + } + + .\32xl\:place-items-auto { + place-items: auto; + } + + .\32xl\:place-items-start { + place-items: start; + } + + .\32xl\:place-items-end { + place-items: end; + } + + .\32xl\:place-items-center { + place-items: center; + } + + .\32xl\:place-items-stretch { + place-items: stretch; + } + + .\32xl\:place-content-center { + place-content: center; + } + + .\32xl\:place-content-start { + place-content: start; + } + + .\32xl\:place-content-end { + place-content: end; + } + + .\32xl\:place-content-between { + place-content: space-between; + } + + .\32xl\:place-content-around { + place-content: space-around; + } + + .\32xl\:place-content-evenly { + place-content: space-evenly; + } + + .\32xl\:place-content-stretch { + place-content: stretch; + } + + .\32xl\:place-self-auto { + place-self: auto; + } + + .\32xl\:place-self-start { + place-self: start; + } + + .\32xl\:place-self-end { + place-self: end; + } + + .\32xl\:place-self-center { + place-self: center; + } + + .\32xl\:place-self-stretch { + place-self: stretch; + } + + .\32xl\:items-start { + align-items: flex-start; + } + + .\32xl\:items-end { + align-items: flex-end; + } + + .\32xl\:items-center { + align-items: center; + } + + .\32xl\:items-baseline { + align-items: baseline; + } + + .\32xl\:items-stretch { + align-items: stretch; + } + + .\32xl\:content-center { + align-content: center; + } + + .\32xl\:content-start { + align-content: flex-start; + } + + .\32xl\:content-end { + align-content: flex-end; + } + + .\32xl\:content-between { + align-content: space-between; + } + + .\32xl\:content-around { + align-content: space-around; + } + + .\32xl\:content-evenly { + align-content: space-evenly; + } + + .\32xl\:self-auto { + align-self: auto; + } + + .\32xl\:self-start { + align-self: flex-start; + } + + .\32xl\:self-end { + align-self: flex-end; + } + + .\32xl\:self-center { + align-self: center; + } + + .\32xl\:self-stretch { + align-self: stretch; + } + + .\32xl\:justify-items-auto { + justify-items: auto; + } + + .\32xl\:justify-items-start { + justify-items: start; + } + + .\32xl\:justify-items-end { + justify-items: end; + } + + .\32xl\:justify-items-center { + justify-items: center; + } + + .\32xl\:justify-items-stretch { + justify-items: stretch; + } + + .\32xl\:justify-start { + justify-content: flex-start; + } + + .\32xl\:justify-end { + justify-content: flex-end; + } + + .\32xl\:justify-center { + justify-content: center; + } + + .\32xl\:justify-between { + justify-content: space-between; + } + + .\32xl\:justify-around { + justify-content: space-around; + } + + .\32xl\:justify-evenly { + justify-content: space-evenly; + } + + .\32xl\:justify-self-auto { + justify-self: auto; + } + + .\32xl\:justify-self-start { + justify-self: start; + } + + .\32xl\:justify-self-end { + justify-self: end; + } + + .\32xl\:justify-self-center { + justify-self: center; + } + + .\32xl\:justify-self-stretch { + justify-self: stretch; + } + + .\32xl\:flex-1 { + flex: 1 1 0%; + } + + .\32xl\:flex-auto { + flex: 1 1 auto; + } + + .\32xl\:flex-initial { + flex: 0 1 auto; + } + + .\32xl\:flex-none { + flex: none; + } + + .\32xl\:flex-grow-0 { + flex-grow: 0; + } + + .\32xl\:flex-grow { + flex-grow: 1; + } + + .\32xl\:flex-shrink-0 { + flex-shrink: 0; + } + + .\32xl\:flex-shrink { + flex-shrink: 1; + } + + .\32xl\:order-1 { + order: 1; + } + + .\32xl\:order-2 { + order: 2; + } + + .\32xl\:order-3 { + order: 3; + } + + .\32xl\:order-4 { + order: 4; + } + + .\32xl\:order-5 { + order: 5; + } + + .\32xl\:order-6 { + order: 6; + } + + .\32xl\:order-7 { + order: 7; + } + + .\32xl\:order-8 { + order: 8; + } + + .\32xl\:order-9 { + order: 9; + } + + .\32xl\:order-10 { + order: 10; + } + + .\32xl\:order-11 { + order: 11; + } + + .\32xl\:order-12 { + order: 12; + } + + .\32xl\:order-first { + order: -9999; + } + + .\32xl\:order-last { + order: 9999; + } + + .\32xl\:order-none { + order: 0; + } + + .\32xl\:float-right { + float: right; + } + + .\32xl\:float-left { + float: left; + } + + .\32xl\:float-none { + float: none; + } + + .\32xl\:clear-left { + clear: left; + } + + .\32xl\:clear-right { + clear: right; + } + + .\32xl\:clear-both { + clear: both; + } + + .\32xl\:clear-none { + clear: none; + } + + .\32xl\:font-body { + font-family: Inter, ui-sans-serif, 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"; + } + + .\32xl\:font-heading { + font-family: Inter, ui-sans-serif, 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"; + } + + .\32xl\:font-sans { + font-family: "Inter", ui-sans-serif, 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"; + } + + .\32xl\:font-serif { + font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + } + + .\32xl\:font-mono { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .\32xl\:font-hairline { + font-weight: 100; + } + + .\32xl\:font-thin { + font-weight: 200; + } + + .\32xl\:font-light { + font-weight: 300; + } + + .\32xl\:font-normal { + font-weight: 400; + } + + .\32xl\:font-medium { + font-weight: 500; + } + + .\32xl\:font-semibold { + font-weight: 600; + } + + .\32xl\:font-bold { + font-weight: 700; + } + + .\32xl\:font-extrabold { + font-weight: 800; + } + + .\32xl\:font-black { + font-weight: 900; + } + + .\32xl\:h-0 { + height: 0px; + } + + .\32xl\:h-1 { + height: 0.25rem; + } + + .\32xl\:h-2 { + height: 0.5rem; + } + + .\32xl\:h-3 { + height: 0.75rem; + } + + .\32xl\:h-4 { + height: 1rem; + } + + .\32xl\:h-5 { + height: 1.25rem; + } + + .\32xl\:h-6 { + height: 1.5rem; + } + + .\32xl\:h-7 { + height: 1.75rem; + } + + .\32xl\:h-8 { + height: 2rem; + } + + .\32xl\:h-9 { + height: 2.25rem; + } + + .\32xl\:h-10 { + height: 2.5rem; + } + + .\32xl\:h-11 { + height: 2.75rem; + } + + .\32xl\:h-12 { + height: 3rem; + } + + .\32xl\:h-14 { + height: 3.5rem; + } + + .\32xl\:h-16 { + height: 4rem; + } + + .\32xl\:h-20 { + height: 5rem; + } + + .\32xl\:h-24 { + height: 6rem; + } + + .\32xl\:h-28 { + height: 7rem; + } + + .\32xl\:h-32 { + height: 8rem; + } + + .\32xl\:h-36 { + height: 9rem; + } + + .\32xl\:h-40 { + height: 10rem; + } + + .\32xl\:h-44 { + height: 11rem; + } + + .\32xl\:h-48 { + height: 12rem; + } + + .\32xl\:h-52 { + height: 13rem; + } + + .\32xl\:h-56 { + height: 14rem; + } + + .\32xl\:h-60 { + height: 15rem; + } + + .\32xl\:h-64 { + height: 16rem; + } + + .\32xl\:h-72 { + height: 18rem; + } + + .\32xl\:h-80 { + height: 20rem; + } + + .\32xl\:h-96 { + height: 24rem; + } + + .\32xl\:h-auto { + height: auto; + } + + .\32xl\:h-px { + height: 1px; + } + + .\32xl\:h-0\.5 { + height: 0.125rem; + } + + .\32xl\:h-1\.5 { + height: 0.375rem; + } + + .\32xl\:h-2\.5 { + height: 0.625rem; + } + + .\32xl\:h-3\.5 { + height: 0.875rem; + } + + .\32xl\:h-full { + height: 100%; + } + + .\32xl\:h-screen { + height: 100vh; + } + + .\32xl\:text-xxs { + font-size: 0.6875rem; + } + + .\32xl\:text-xs { + font-size: 0.75rem; + } + + .\32xl\:text-sm { + font-size: 0.875rem; + } + + .\32xl\:text-base { + font-size: 1rem; + } + + .\32xl\:text-lg { + font-size: 1.125rem; + } + + .\32xl\:text-xl { + font-size: 1.25rem; + } + + .\32xl\:text-2xl { + font-size: 1.5rem; + } + + .\32xl\:text-3xl { + font-size: 1.875rem; + } + + .\32xl\:text-4xl { + font-size: 2.25rem; + } + + .\32xl\:text-5xl { + font-size: 3rem; + } + + .\32xl\:text-6xl { + font-size: 3.75rem; + } + + .\32xl\:text-7xl { + font-size: 4.5rem; + } + + .\32xl\:text-8xl { + font-size: 6rem; + } + + .\32xl\:text-9xl { + font-size: 8rem; + } + + .\32xl\:leading-3 { + line-height: .75rem; + } + + .\32xl\:leading-4 { + line-height: 1rem; + } + + .\32xl\:leading-5 { + line-height: 1.25rem; + } + + .\32xl\:leading-6 { + line-height: 1.5rem; + } + + .\32xl\:leading-7 { + line-height: 1.75rem; + } + + .\32xl\:leading-8 { + line-height: 2rem; + } + + .\32xl\:leading-9 { + line-height: 2.25rem; + } + + .\32xl\:leading-10 { + line-height: 2.5rem; + } + + .\32xl\:leading-none { + line-height: 1; + } + + .\32xl\:leading-tight { + line-height: 1.25; + } + + .\32xl\:leading-snug { + line-height: 1.375; + } + + .\32xl\:leading-normal { + line-height: 1.5; + } + + .\32xl\:leading-relaxed { + line-height: 1.625; + } + + .\32xl\:leading-loose { + line-height: 2; + } + + .\32xl\:list-inside { + list-style-position: inside; + } + + .\32xl\:list-outside { + list-style-position: outside; + } + + .\32xl\:list-none { + list-style-type: none; + } + + .\32xl\:list-disc { + list-style-type: disc; + } + + .\32xl\:list-decimal { + list-style-type: decimal; + } + + .\32xl\:m-0 { + margin: 0px; + } + + .\32xl\:m-1 { + margin: 0.25rem; + } + + .\32xl\:m-2 { + margin: 0.5rem; + } + + .\32xl\:m-3 { + margin: 0.75rem; + } + + .\32xl\:m-4 { + margin: 1rem; + } + + .\32xl\:m-5 { + margin: 1.25rem; + } + + .\32xl\:m-6 { + margin: 1.5rem; + } + + .\32xl\:m-7 { + margin: 1.75rem; + } + + .\32xl\:m-8 { + margin: 2rem; + } + + .\32xl\:m-9 { + margin: 2.25rem; + } + + .\32xl\:m-10 { + margin: 2.5rem; + } + + .\32xl\:m-11 { + margin: 2.75rem; + } + + .\32xl\:m-12 { + margin: 3rem; + } + + .\32xl\:m-14 { + margin: 3.5rem; + } + + .\32xl\:m-16 { + margin: 4rem; + } + + .\32xl\:m-20 { + margin: 5rem; + } + + .\32xl\:m-24 { + margin: 6rem; + } + + .\32xl\:m-28 { + margin: 7rem; + } + + .\32xl\:m-32 { + margin: 8rem; + } + + .\32xl\:m-36 { + margin: 9rem; + } + + .\32xl\:m-40 { + margin: 10rem; + } + + .\32xl\:m-44 { + margin: 11rem; + } + + .\32xl\:m-48 { + margin: 12rem; + } + + .\32xl\:m-52 { + margin: 13rem; + } + + .\32xl\:m-56 { + margin: 14rem; + } + + .\32xl\:m-60 { + margin: 15rem; + } + + .\32xl\:m-64 { + margin: 16rem; + } + + .\32xl\:m-72 { + margin: 18rem; + } + + .\32xl\:m-80 { + margin: 20rem; + } + + .\32xl\:m-96 { + margin: 24rem; + } + + .\32xl\:m-auto { + margin: auto; + } + + .\32xl\:m-px { + margin: 1px; + } + + .\32xl\:m-0\.5 { + margin: 0.125rem; + } + + .\32xl\:m-1\.5 { + margin: 0.375rem; + } + + .\32xl\:m-2\.5 { + margin: 0.625rem; + } + + .\32xl\:m-3\.5 { + margin: 0.875rem; + } + + .\32xl\:-m-0 { + margin: 0px; + } + + .\32xl\:-m-1 { + margin: -0.25rem; + } + + .\32xl\:-m-2 { + margin: -0.5rem; + } + + .\32xl\:-m-3 { + margin: -0.75rem; + } + + .\32xl\:-m-4 { + margin: -1rem; + } + + .\32xl\:-m-5 { + margin: -1.25rem; + } + + .\32xl\:-m-6 { + margin: -1.5rem; + } + + .\32xl\:-m-7 { + margin: -1.75rem; + } + + .\32xl\:-m-8 { + margin: -2rem; + } + + .\32xl\:-m-9 { + margin: -2.25rem; + } + + .\32xl\:-m-10 { + margin: -2.5rem; + } + + .\32xl\:-m-11 { + margin: -2.75rem; + } + + .\32xl\:-m-12 { + margin: -3rem; + } + + .\32xl\:-m-14 { + margin: -3.5rem; + } + + .\32xl\:-m-16 { + margin: -4rem; + } + + .\32xl\:-m-20 { + margin: -5rem; + } + + .\32xl\:-m-24 { + margin: -6rem; + } + + .\32xl\:-m-28 { + margin: -7rem; + } + + .\32xl\:-m-32 { + margin: -8rem; + } + + .\32xl\:-m-36 { + margin: -9rem; + } + + .\32xl\:-m-40 { + margin: -10rem; + } + + .\32xl\:-m-44 { + margin: -11rem; + } + + .\32xl\:-m-48 { + margin: -12rem; + } + + .\32xl\:-m-52 { + margin: -13rem; + } + + .\32xl\:-m-56 { + margin: -14rem; + } + + .\32xl\:-m-60 { + margin: -15rem; + } + + .\32xl\:-m-64 { + margin: -16rem; + } + + .\32xl\:-m-72 { + margin: -18rem; + } + + .\32xl\:-m-80 { + margin: -20rem; + } + + .\32xl\:-m-96 { + margin: -24rem; + } + + .\32xl\:-m-px { + margin: -1px; + } + + .\32xl\:-m-0\.5 { + margin: -0.125rem; + } + + .\32xl\:-m-1\.5 { + margin: -0.375rem; + } + + .\32xl\:-m-2\.5 { + margin: -0.625rem; + } + + .\32xl\:-m-3\.5 { + margin: -0.875rem; + } + + .\32xl\:my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .\32xl\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .\32xl\:my-1 { + margin-top: 0.25rem; + margin-bottom: 0.25rem; + } + + .\32xl\:mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; + } + + .\32xl\:my-2 { + margin-top: 0.5rem; + margin-bottom: 0.5rem; + } + + .\32xl\:mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; + } + + .\32xl\:my-3 { + margin-top: 0.75rem; + margin-bottom: 0.75rem; + } + + .\32xl\:mx-3 { + margin-left: 0.75rem; + margin-right: 0.75rem; + } + + .\32xl\:my-4 { + margin-top: 1rem; + margin-bottom: 1rem; + } + + .\32xl\:mx-4 { + margin-left: 1rem; + margin-right: 1rem; + } + + .\32xl\:my-5 { + margin-top: 1.25rem; + margin-bottom: 1.25rem; + } + + .\32xl\:mx-5 { + margin-left: 1.25rem; + margin-right: 1.25rem; + } + + .\32xl\:my-6 { + margin-top: 1.5rem; + margin-bottom: 1.5rem; + } + + .\32xl\:mx-6 { + margin-left: 1.5rem; + margin-right: 1.5rem; + } + + .\32xl\:my-7 { + margin-top: 1.75rem; + margin-bottom: 1.75rem; + } + + .\32xl\:mx-7 { + margin-left: 1.75rem; + margin-right: 1.75rem; + } + + .\32xl\:my-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .\32xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .\32xl\:my-9 { + margin-top: 2.25rem; + margin-bottom: 2.25rem; + } + + .\32xl\:mx-9 { + margin-left: 2.25rem; + margin-right: 2.25rem; + } + + .\32xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .\32xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .\32xl\:my-11 { + margin-top: 2.75rem; + margin-bottom: 2.75rem; + } + + .\32xl\:mx-11 { + margin-left: 2.75rem; + margin-right: 2.75rem; + } + + .\32xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .\32xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .\32xl\:my-14 { + margin-top: 3.5rem; + margin-bottom: 3.5rem; + } + + .\32xl\:mx-14 { + margin-left: 3.5rem; + margin-right: 3.5rem; + } + + .\32xl\:my-16 { + margin-top: 4rem; + margin-bottom: 4rem; + } + + .\32xl\:mx-16 { + margin-left: 4rem; + margin-right: 4rem; + } + + .\32xl\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; + } + + .\32xl\:mx-20 { + margin-left: 5rem; + margin-right: 5rem; + } + + .\32xl\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; + } + + .\32xl\:mx-24 { + margin-left: 6rem; + margin-right: 6rem; + } + + .\32xl\:my-28 { + margin-top: 7rem; + margin-bottom: 7rem; + } + + .\32xl\:mx-28 { + margin-left: 7rem; + margin-right: 7rem; + } + + .\32xl\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .\32xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .\32xl\:my-36 { + margin-top: 9rem; + margin-bottom: 9rem; + } + + .\32xl\:mx-36 { + margin-left: 9rem; + margin-right: 9rem; + } + + .\32xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .\32xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .\32xl\:my-44 { + margin-top: 11rem; + margin-bottom: 11rem; + } + + .\32xl\:mx-44 { + margin-left: 11rem; + margin-right: 11rem; + } + + .\32xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .\32xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .\32xl\:my-52 { + margin-top: 13rem; + margin-bottom: 13rem; + } + + .\32xl\:mx-52 { + margin-left: 13rem; + margin-right: 13rem; + } + + .\32xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .\32xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .\32xl\:my-60 { + margin-top: 15rem; + margin-bottom: 15rem; + } + + .\32xl\:mx-60 { + margin-left: 15rem; + margin-right: 15rem; + } + + .\32xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .\32xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .\32xl\:my-72 { + margin-top: 18rem; + margin-bottom: 18rem; + } + + .\32xl\:mx-72 { + margin-left: 18rem; + margin-right: 18rem; + } + + .\32xl\:my-80 { + margin-top: 20rem; + margin-bottom: 20rem; + } + + .\32xl\:mx-80 { + margin-left: 20rem; + margin-right: 20rem; + } + + .\32xl\:my-96 { + margin-top: 24rem; + margin-bottom: 24rem; + } + + .\32xl\:mx-96 { + margin-left: 24rem; + margin-right: 24rem; + } + + .\32xl\:my-auto { + margin-top: auto; + margin-bottom: auto; + } + + .\32xl\:mx-auto { + margin-left: auto; + margin-right: auto; + } + + .\32xl\:my-px { + margin-top: 1px; + margin-bottom: 1px; + } + + .\32xl\:mx-px { + margin-left: 1px; + margin-right: 1px; + } + + .\32xl\:my-0\.5 { + margin-top: 0.125rem; + margin-bottom: 0.125rem; + } + + .\32xl\:mx-0\.5 { + margin-left: 0.125rem; + margin-right: 0.125rem; + } + + .\32xl\:my-1\.5 { + margin-top: 0.375rem; + margin-bottom: 0.375rem; + } + + .\32xl\:mx-1\.5 { + margin-left: 0.375rem; + margin-right: 0.375rem; + } + + .\32xl\:my-2\.5 { + margin-top: 0.625rem; + margin-bottom: 0.625rem; + } + + .\32xl\:mx-2\.5 { + margin-left: 0.625rem; + margin-right: 0.625rem; + } + + .\32xl\:my-3\.5 { + margin-top: 0.875rem; + margin-bottom: 0.875rem; + } + + .\32xl\:mx-3\.5 { + margin-left: 0.875rem; + margin-right: 0.875rem; + } + + .\32xl\:-my-0 { + margin-top: 0px; + margin-bottom: 0px; + } + + .\32xl\:-mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .\32xl\:-my-1 { + margin-top: -0.25rem; + margin-bottom: -0.25rem; + } + + .\32xl\:-mx-1 { + margin-left: -0.25rem; + margin-right: -0.25rem; + } + + .\32xl\:-my-2 { + margin-top: -0.5rem; + margin-bottom: -0.5rem; + } + + .\32xl\:-mx-2 { + margin-left: -0.5rem; + margin-right: -0.5rem; + } + + .\32xl\:-my-3 { + margin-top: -0.75rem; + margin-bottom: -0.75rem; + } + + .\32xl\:-mx-3 { + margin-left: -0.75rem; + margin-right: -0.75rem; + } + + .\32xl\:-my-4 { + margin-top: -1rem; + margin-bottom: -1rem; + } + + .\32xl\:-mx-4 { + margin-left: -1rem; + margin-right: -1rem; + } + + .\32xl\:-my-5 { + margin-top: -1.25rem; + margin-bottom: -1.25rem; + } + + .\32xl\:-mx-5 { + margin-left: -1.25rem; + margin-right: -1.25rem; + } + + .\32xl\:-my-6 { + margin-top: -1.5rem; + margin-bottom: -1.5rem; + } + + .\32xl\:-mx-6 { + margin-left: -1.5rem; + margin-right: -1.5rem; + } + + .\32xl\:-my-7 { + margin-top: -1.75rem; + margin-bottom: -1.75rem; + } + + .\32xl\:-mx-7 { + margin-left: -1.75rem; + margin-right: -1.75rem; + } + + .\32xl\:-my-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .\32xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .\32xl\:-my-9 { + margin-top: -2.25rem; + margin-bottom: -2.25rem; + } + + .\32xl\:-mx-9 { + margin-left: -2.25rem; + margin-right: -2.25rem; + } + + .\32xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .\32xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .\32xl\:-my-11 { + margin-top: -2.75rem; + margin-bottom: -2.75rem; + } + + .\32xl\:-mx-11 { + margin-left: -2.75rem; + margin-right: -2.75rem; + } + + .\32xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .\32xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .\32xl\:-my-14 { + margin-top: -3.5rem; + margin-bottom: -3.5rem; + } + + .\32xl\:-mx-14 { + margin-left: -3.5rem; + margin-right: -3.5rem; + } + + .\32xl\:-my-16 { + margin-top: -4rem; + margin-bottom: -4rem; + } + + .\32xl\:-mx-16 { + margin-left: -4rem; + margin-right: -4rem; + } + + .\32xl\:-my-20 { + margin-top: -5rem; + margin-bottom: -5rem; + } + + .\32xl\:-mx-20 { + margin-left: -5rem; + margin-right: -5rem; + } + + .\32xl\:-my-24 { + margin-top: -6rem; + margin-bottom: -6rem; + } + + .\32xl\:-mx-24 { + margin-left: -6rem; + margin-right: -6rem; + } + + .\32xl\:-my-28 { + margin-top: -7rem; + margin-bottom: -7rem; + } + + .\32xl\:-mx-28 { + margin-left: -7rem; + margin-right: -7rem; + } + + .\32xl\:-my-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .\32xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .\32xl\:-my-36 { + margin-top: -9rem; + margin-bottom: -9rem; + } + + .\32xl\:-mx-36 { + margin-left: -9rem; + margin-right: -9rem; + } + + .\32xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .\32xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .\32xl\:-my-44 { + margin-top: -11rem; + margin-bottom: -11rem; + } + + .\32xl\:-mx-44 { + margin-left: -11rem; + margin-right: -11rem; + } + + .\32xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .\32xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .\32xl\:-my-52 { + margin-top: -13rem; + margin-bottom: -13rem; + } + + .\32xl\:-mx-52 { + margin-left: -13rem; + margin-right: -13rem; + } + + .\32xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .\32xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .\32xl\:-my-60 { + margin-top: -15rem; + margin-bottom: -15rem; + } + + .\32xl\:-mx-60 { + margin-left: -15rem; + margin-right: -15rem; + } + + .\32xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .\32xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .\32xl\:-my-72 { + margin-top: -18rem; + margin-bottom: -18rem; + } + + .\32xl\:-mx-72 { + margin-left: -18rem; + margin-right: -18rem; + } + + .\32xl\:-my-80 { + margin-top: -20rem; + margin-bottom: -20rem; + } + + .\32xl\:-mx-80 { + margin-left: -20rem; + margin-right: -20rem; + } + + .\32xl\:-my-96 { + margin-top: -24rem; + margin-bottom: -24rem; + } + + .\32xl\:-mx-96 { + margin-left: -24rem; + margin-right: -24rem; + } + + .\32xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .\32xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .\32xl\:-my-0\.5 { + margin-top: -0.125rem; + margin-bottom: -0.125rem; + } + + .\32xl\:-mx-0\.5 { + margin-left: -0.125rem; + margin-right: -0.125rem; + } + + .\32xl\:-my-1\.5 { + margin-top: -0.375rem; + margin-bottom: -0.375rem; + } + + .\32xl\:-mx-1\.5 { + margin-left: -0.375rem; + margin-right: -0.375rem; + } + + .\32xl\:-my-2\.5 { + margin-top: -0.625rem; + margin-bottom: -0.625rem; + } + + .\32xl\:-mx-2\.5 { + margin-left: -0.625rem; + margin-right: -0.625rem; + } + + .\32xl\:-my-3\.5 { + margin-top: -0.875rem; + margin-bottom: -0.875rem; + } + + .\32xl\:-mx-3\.5 { + margin-left: -0.875rem; + margin-right: -0.875rem; + } + + .\32xl\:mt-0 { + margin-top: 0px; + } + + .\32xl\:mr-0 { + margin-right: 0px; + } + + .\32xl\:mb-0 { + margin-bottom: 0px; + } + + .\32xl\:ml-0 { + margin-left: 0px; + } + + .\32xl\:mt-1 { + margin-top: 0.25rem; + } + + .\32xl\:mr-1 { + margin-right: 0.25rem; + } + + .\32xl\:mb-1 { + margin-bottom: 0.25rem; + } + + .\32xl\:ml-1 { + margin-left: 0.25rem; + } + + .\32xl\:mt-2 { + margin-top: 0.5rem; + } + + .\32xl\:mr-2 { + margin-right: 0.5rem; + } + + .\32xl\:mb-2 { + margin-bottom: 0.5rem; + } + + .\32xl\:ml-2 { + margin-left: 0.5rem; + } + + .\32xl\:mt-3 { + margin-top: 0.75rem; + } + + .\32xl\:mr-3 { + margin-right: 0.75rem; + } + + .\32xl\:mb-3 { + margin-bottom: 0.75rem; + } + + .\32xl\:ml-3 { + margin-left: 0.75rem; + } + + .\32xl\:mt-4 { + margin-top: 1rem; + } + + .\32xl\:mr-4 { + margin-right: 1rem; + } + + .\32xl\:mb-4 { + margin-bottom: 1rem; + } + + .\32xl\:ml-4 { + margin-left: 1rem; + } + + .\32xl\:mt-5 { + margin-top: 1.25rem; + } + + .\32xl\:mr-5 { + margin-right: 1.25rem; + } + + .\32xl\:mb-5 { + margin-bottom: 1.25rem; + } + + .\32xl\:ml-5 { + margin-left: 1.25rem; + } + + .\32xl\:mt-6 { + margin-top: 1.5rem; + } + + .\32xl\:mr-6 { + margin-right: 1.5rem; + } + + .\32xl\:mb-6 { + margin-bottom: 1.5rem; + } + + .\32xl\:ml-6 { + margin-left: 1.5rem; + } + + .\32xl\:mt-7 { + margin-top: 1.75rem; + } + + .\32xl\:mr-7 { + margin-right: 1.75rem; + } + + .\32xl\:mb-7 { + margin-bottom: 1.75rem; + } + + .\32xl\:ml-7 { + margin-left: 1.75rem; + } + + .\32xl\:mt-8 { + margin-top: 2rem; + } + + .\32xl\:mr-8 { + margin-right: 2rem; + } + + .\32xl\:mb-8 { + margin-bottom: 2rem; + } + + .\32xl\:ml-8 { + margin-left: 2rem; + } + + .\32xl\:mt-9 { + margin-top: 2.25rem; + } + + .\32xl\:mr-9 { + margin-right: 2.25rem; + } + + .\32xl\:mb-9 { + margin-bottom: 2.25rem; + } + + .\32xl\:ml-9 { + margin-left: 2.25rem; + } + + .\32xl\:mt-10 { + margin-top: 2.5rem; + } + + .\32xl\:mr-10 { + margin-right: 2.5rem; + } + + .\32xl\:mb-10 { + margin-bottom: 2.5rem; + } + + .\32xl\:ml-10 { + margin-left: 2.5rem; + } + + .\32xl\:mt-11 { + margin-top: 2.75rem; + } + + .\32xl\:mr-11 { + margin-right: 2.75rem; + } + + .\32xl\:mb-11 { + margin-bottom: 2.75rem; + } + + .\32xl\:ml-11 { + margin-left: 2.75rem; + } + + .\32xl\:mt-12 { + margin-top: 3rem; + } + + .\32xl\:mr-12 { + margin-right: 3rem; + } + + .\32xl\:mb-12 { + margin-bottom: 3rem; + } + + .\32xl\:ml-12 { + margin-left: 3rem; + } + + .\32xl\:mt-14 { + margin-top: 3.5rem; + } + + .\32xl\:mr-14 { + margin-right: 3.5rem; + } + + .\32xl\:mb-14 { + margin-bottom: 3.5rem; + } + + .\32xl\:ml-14 { + margin-left: 3.5rem; + } + + .\32xl\:mt-16 { + margin-top: 4rem; + } + + .\32xl\:mr-16 { + margin-right: 4rem; + } + + .\32xl\:mb-16 { + margin-bottom: 4rem; + } + + .\32xl\:ml-16 { + margin-left: 4rem; + } + + .\32xl\:mt-20 { + margin-top: 5rem; + } + + .\32xl\:mr-20 { + margin-right: 5rem; + } + + .\32xl\:mb-20 { + margin-bottom: 5rem; + } + + .\32xl\:ml-20 { + margin-left: 5rem; + } + + .\32xl\:mt-24 { + margin-top: 6rem; + } + + .\32xl\:mr-24 { + margin-right: 6rem; + } + + .\32xl\:mb-24 { + margin-bottom: 6rem; + } + + .\32xl\:ml-24 { + margin-left: 6rem; + } + + .\32xl\:mt-28 { + margin-top: 7rem; + } + + .\32xl\:mr-28 { + margin-right: 7rem; + } + + .\32xl\:mb-28 { + margin-bottom: 7rem; + } + + .\32xl\:ml-28 { + margin-left: 7rem; + } + + .\32xl\:mt-32 { + margin-top: 8rem; + } + + .\32xl\:mr-32 { + margin-right: 8rem; + } + + .\32xl\:mb-32 { + margin-bottom: 8rem; + } + + .\32xl\:ml-32 { + margin-left: 8rem; + } + + .\32xl\:mt-36 { + margin-top: 9rem; + } + + .\32xl\:mr-36 { + margin-right: 9rem; + } + + .\32xl\:mb-36 { + margin-bottom: 9rem; + } + + .\32xl\:ml-36 { + margin-left: 9rem; + } + + .\32xl\:mt-40 { + margin-top: 10rem; + } + + .\32xl\:mr-40 { + margin-right: 10rem; + } + + .\32xl\:mb-40 { + margin-bottom: 10rem; + } + + .\32xl\:ml-40 { + margin-left: 10rem; + } + + .\32xl\:mt-44 { + margin-top: 11rem; + } + + .\32xl\:mr-44 { + margin-right: 11rem; + } + + .\32xl\:mb-44 { + margin-bottom: 11rem; + } + + .\32xl\:ml-44 { + margin-left: 11rem; + } + + .\32xl\:mt-48 { + margin-top: 12rem; + } + + .\32xl\:mr-48 { + margin-right: 12rem; + } + + .\32xl\:mb-48 { + margin-bottom: 12rem; + } + + .\32xl\:ml-48 { + margin-left: 12rem; + } + + .\32xl\:mt-52 { + margin-top: 13rem; + } + + .\32xl\:mr-52 { + margin-right: 13rem; + } + + .\32xl\:mb-52 { + margin-bottom: 13rem; + } + + .\32xl\:ml-52 { + margin-left: 13rem; + } + + .\32xl\:mt-56 { + margin-top: 14rem; + } + + .\32xl\:mr-56 { + margin-right: 14rem; + } + + .\32xl\:mb-56 { + margin-bottom: 14rem; + } + + .\32xl\:ml-56 { + margin-left: 14rem; + } + + .\32xl\:mt-60 { + margin-top: 15rem; + } + + .\32xl\:mr-60 { + margin-right: 15rem; + } + + .\32xl\:mb-60 { + margin-bottom: 15rem; + } + + .\32xl\:ml-60 { + margin-left: 15rem; + } + + .\32xl\:mt-64 { + margin-top: 16rem; + } + + .\32xl\:mr-64 { + margin-right: 16rem; + } + + .\32xl\:mb-64 { + margin-bottom: 16rem; + } + + .\32xl\:ml-64 { + margin-left: 16rem; + } + + .\32xl\:mt-72 { + margin-top: 18rem; + } + + .\32xl\:mr-72 { + margin-right: 18rem; + } + + .\32xl\:mb-72 { + margin-bottom: 18rem; + } + + .\32xl\:ml-72 { + margin-left: 18rem; + } + + .\32xl\:mt-80 { + margin-top: 20rem; + } + + .\32xl\:mr-80 { + margin-right: 20rem; + } + + .\32xl\:mb-80 { + margin-bottom: 20rem; + } + + .\32xl\:ml-80 { + margin-left: 20rem; + } + + .\32xl\:mt-96 { + margin-top: 24rem; + } + + .\32xl\:mr-96 { + margin-right: 24rem; + } + + .\32xl\:mb-96 { + margin-bottom: 24rem; + } + + .\32xl\:ml-96 { + margin-left: 24rem; + } + + .\32xl\:mt-auto { + margin-top: auto; + } + + .\32xl\:mr-auto { + margin-right: auto; + } + + .\32xl\:mb-auto { + margin-bottom: auto; + } + + .\32xl\:ml-auto { + margin-left: auto; + } + + .\32xl\:mt-px { + margin-top: 1px; + } + + .\32xl\:mr-px { + margin-right: 1px; + } + + .\32xl\:mb-px { + margin-bottom: 1px; + } + + .\32xl\:ml-px { + margin-left: 1px; + } + + .\32xl\:mt-0\.5 { + margin-top: 0.125rem; + } + + .\32xl\:mr-0\.5 { + margin-right: 0.125rem; + } + + .\32xl\:mb-0\.5 { + margin-bottom: 0.125rem; + } + + .\32xl\:ml-0\.5 { + margin-left: 0.125rem; + } + + .\32xl\:mt-1\.5 { + margin-top: 0.375rem; + } + + .\32xl\:mr-1\.5 { + margin-right: 0.375rem; + } + + .\32xl\:mb-1\.5 { + margin-bottom: 0.375rem; + } + + .\32xl\:ml-1\.5 { + margin-left: 0.375rem; + } + + .\32xl\:mt-2\.5 { + margin-top: 0.625rem; + } + + .\32xl\:mr-2\.5 { + margin-right: 0.625rem; + } + + .\32xl\:mb-2\.5 { + margin-bottom: 0.625rem; + } + + .\32xl\:ml-2\.5 { + margin-left: 0.625rem; + } + + .\32xl\:mt-3\.5 { + margin-top: 0.875rem; + } + + .\32xl\:mr-3\.5 { + margin-right: 0.875rem; + } + + .\32xl\:mb-3\.5 { + margin-bottom: 0.875rem; + } + + .\32xl\:ml-3\.5 { + margin-left: 0.875rem; + } + + .\32xl\:-mt-0 { + margin-top: 0px; + } + + .\32xl\:-mr-0 { + margin-right: 0px; + } + + .\32xl\:-mb-0 { + margin-bottom: 0px; + } + + .\32xl\:-ml-0 { + margin-left: 0px; + } + + .\32xl\:-mt-1 { + margin-top: -0.25rem; + } + + .\32xl\:-mr-1 { + margin-right: -0.25rem; + } + + .\32xl\:-mb-1 { + margin-bottom: -0.25rem; + } + + .\32xl\:-ml-1 { + margin-left: -0.25rem; + } + + .\32xl\:-mt-2 { + margin-top: -0.5rem; + } + + .\32xl\:-mr-2 { + margin-right: -0.5rem; + } + + .\32xl\:-mb-2 { + margin-bottom: -0.5rem; + } + + .\32xl\:-ml-2 { + margin-left: -0.5rem; + } + + .\32xl\:-mt-3 { + margin-top: -0.75rem; + } + + .\32xl\:-mr-3 { + margin-right: -0.75rem; + } + + .\32xl\:-mb-3 { + margin-bottom: -0.75rem; + } + + .\32xl\:-ml-3 { + margin-left: -0.75rem; + } + + .\32xl\:-mt-4 { + margin-top: -1rem; + } + + .\32xl\:-mr-4 { + margin-right: -1rem; + } + + .\32xl\:-mb-4 { + margin-bottom: -1rem; + } + + .\32xl\:-ml-4 { + margin-left: -1rem; + } + + .\32xl\:-mt-5 { + margin-top: -1.25rem; + } + + .\32xl\:-mr-5 { + margin-right: -1.25rem; + } + + .\32xl\:-mb-5 { + margin-bottom: -1.25rem; + } + + .\32xl\:-ml-5 { + margin-left: -1.25rem; + } + + .\32xl\:-mt-6 { + margin-top: -1.5rem; + } + + .\32xl\:-mr-6 { + margin-right: -1.5rem; + } + + .\32xl\:-mb-6 { + margin-bottom: -1.5rem; + } + + .\32xl\:-ml-6 { + margin-left: -1.5rem; + } + + .\32xl\:-mt-7 { + margin-top: -1.75rem; + } + + .\32xl\:-mr-7 { + margin-right: -1.75rem; + } + + .\32xl\:-mb-7 { + margin-bottom: -1.75rem; + } + + .\32xl\:-ml-7 { + margin-left: -1.75rem; + } + + .\32xl\:-mt-8 { + margin-top: -2rem; + } + + .\32xl\:-mr-8 { + margin-right: -2rem; + } + + .\32xl\:-mb-8 { + margin-bottom: -2rem; + } + + .\32xl\:-ml-8 { + margin-left: -2rem; + } + + .\32xl\:-mt-9 { + margin-top: -2.25rem; + } + + .\32xl\:-mr-9 { + margin-right: -2.25rem; + } + + .\32xl\:-mb-9 { + margin-bottom: -2.25rem; + } + + .\32xl\:-ml-9 { + margin-left: -2.25rem; + } + + .\32xl\:-mt-10 { + margin-top: -2.5rem; + } + + .\32xl\:-mr-10 { + margin-right: -2.5rem; + } + + .\32xl\:-mb-10 { + margin-bottom: -2.5rem; + } + + .\32xl\:-ml-10 { + margin-left: -2.5rem; + } + + .\32xl\:-mt-11 { + margin-top: -2.75rem; + } + + .\32xl\:-mr-11 { + margin-right: -2.75rem; + } + + .\32xl\:-mb-11 { + margin-bottom: -2.75rem; + } + + .\32xl\:-ml-11 { + margin-left: -2.75rem; + } + + .\32xl\:-mt-12 { + margin-top: -3rem; + } + + .\32xl\:-mr-12 { + margin-right: -3rem; + } + + .\32xl\:-mb-12 { + margin-bottom: -3rem; + } + + .\32xl\:-ml-12 { + margin-left: -3rem; + } + + .\32xl\:-mt-14 { + margin-top: -3.5rem; + } + + .\32xl\:-mr-14 { + margin-right: -3.5rem; + } + + .\32xl\:-mb-14 { + margin-bottom: -3.5rem; + } + + .\32xl\:-ml-14 { + margin-left: -3.5rem; + } + + .\32xl\:-mt-16 { + margin-top: -4rem; + } + + .\32xl\:-mr-16 { + margin-right: -4rem; + } + + .\32xl\:-mb-16 { + margin-bottom: -4rem; + } + + .\32xl\:-ml-16 { + margin-left: -4rem; + } + + .\32xl\:-mt-20 { + margin-top: -5rem; + } + + .\32xl\:-mr-20 { + margin-right: -5rem; + } + + .\32xl\:-mb-20 { + margin-bottom: -5rem; + } + + .\32xl\:-ml-20 { + margin-left: -5rem; + } + + .\32xl\:-mt-24 { + margin-top: -6rem; + } + + .\32xl\:-mr-24 { + margin-right: -6rem; + } + + .\32xl\:-mb-24 { + margin-bottom: -6rem; + } + + .\32xl\:-ml-24 { + margin-left: -6rem; + } + + .\32xl\:-mt-28 { + margin-top: -7rem; + } + + .\32xl\:-mr-28 { + margin-right: -7rem; + } + + .\32xl\:-mb-28 { + margin-bottom: -7rem; + } + + .\32xl\:-ml-28 { + margin-left: -7rem; + } + + .\32xl\:-mt-32 { + margin-top: -8rem; + } + + .\32xl\:-mr-32 { + margin-right: -8rem; + } + + .\32xl\:-mb-32 { + margin-bottom: -8rem; + } + + .\32xl\:-ml-32 { + margin-left: -8rem; + } + + .\32xl\:-mt-36 { + margin-top: -9rem; + } + + .\32xl\:-mr-36 { + margin-right: -9rem; + } + + .\32xl\:-mb-36 { + margin-bottom: -9rem; + } + + .\32xl\:-ml-36 { + margin-left: -9rem; + } + + .\32xl\:-mt-40 { + margin-top: -10rem; + } + + .\32xl\:-mr-40 { + margin-right: -10rem; + } + + .\32xl\:-mb-40 { + margin-bottom: -10rem; + } + + .\32xl\:-ml-40 { + margin-left: -10rem; + } + + .\32xl\:-mt-44 { + margin-top: -11rem; + } + + .\32xl\:-mr-44 { + margin-right: -11rem; + } + + .\32xl\:-mb-44 { + margin-bottom: -11rem; + } + + .\32xl\:-ml-44 { + margin-left: -11rem; + } + + .\32xl\:-mt-48 { + margin-top: -12rem; + } + + .\32xl\:-mr-48 { + margin-right: -12rem; + } + + .\32xl\:-mb-48 { + margin-bottom: -12rem; + } + + .\32xl\:-ml-48 { + margin-left: -12rem; + } + + .\32xl\:-mt-52 { + margin-top: -13rem; + } + + .\32xl\:-mr-52 { + margin-right: -13rem; + } + + .\32xl\:-mb-52 { + margin-bottom: -13rem; + } + + .\32xl\:-ml-52 { + margin-left: -13rem; + } + + .\32xl\:-mt-56 { + margin-top: -14rem; + } + + .\32xl\:-mr-56 { + margin-right: -14rem; + } + + .\32xl\:-mb-56 { + margin-bottom: -14rem; + } + + .\32xl\:-ml-56 { + margin-left: -14rem; + } + + .\32xl\:-mt-60 { + margin-top: -15rem; + } + + .\32xl\:-mr-60 { + margin-right: -15rem; + } + + .\32xl\:-mb-60 { + margin-bottom: -15rem; + } + + .\32xl\:-ml-60 { + margin-left: -15rem; + } + + .\32xl\:-mt-64 { + margin-top: -16rem; + } + + .\32xl\:-mr-64 { + margin-right: -16rem; + } + + .\32xl\:-mb-64 { + margin-bottom: -16rem; + } + + .\32xl\:-ml-64 { + margin-left: -16rem; + } + + .\32xl\:-mt-72 { + margin-top: -18rem; + } + + .\32xl\:-mr-72 { + margin-right: -18rem; + } + + .\32xl\:-mb-72 { + margin-bottom: -18rem; + } + + .\32xl\:-ml-72 { + margin-left: -18rem; + } + + .\32xl\:-mt-80 { + margin-top: -20rem; + } + + .\32xl\:-mr-80 { + margin-right: -20rem; + } + + .\32xl\:-mb-80 { + margin-bottom: -20rem; + } + + .\32xl\:-ml-80 { + margin-left: -20rem; + } + + .\32xl\:-mt-96 { + margin-top: -24rem; + } + + .\32xl\:-mr-96 { + margin-right: -24rem; + } + + .\32xl\:-mb-96 { + margin-bottom: -24rem; + } + + .\32xl\:-ml-96 { + margin-left: -24rem; + } + + .\32xl\:-mt-px { + margin-top: -1px; + } + + .\32xl\:-mr-px { + margin-right: -1px; + } + + .\32xl\:-mb-px { + margin-bottom: -1px; + } + + .\32xl\:-ml-px { + margin-left: -1px; + } + + .\32xl\:-mt-0\.5 { + margin-top: -0.125rem; + } + + .\32xl\:-mr-0\.5 { + margin-right: -0.125rem; + } + + .\32xl\:-mb-0\.5 { + margin-bottom: -0.125rem; + } + + .\32xl\:-ml-0\.5 { + margin-left: -0.125rem; + } + + .\32xl\:-mt-1\.5 { + margin-top: -0.375rem; + } + + .\32xl\:-mr-1\.5 { + margin-right: -0.375rem; + } + + .\32xl\:-mb-1\.5 { + margin-bottom: -0.375rem; + } + + .\32xl\:-ml-1\.5 { + margin-left: -0.375rem; + } + + .\32xl\:-mt-2\.5 { + margin-top: -0.625rem; + } + + .\32xl\:-mr-2\.5 { + margin-right: -0.625rem; + } + + .\32xl\:-mb-2\.5 { + margin-bottom: -0.625rem; + } + + .\32xl\:-ml-2\.5 { + margin-left: -0.625rem; + } + + .\32xl\:-mt-3\.5 { + margin-top: -0.875rem; + } + + .\32xl\:-mr-3\.5 { + margin-right: -0.875rem; + } + + .\32xl\:-mb-3\.5 { + margin-bottom: -0.875rem; + } + + .\32xl\:-ml-3\.5 { + margin-left: -0.875rem; + } + + .\32xl\:max-h-full { + max-height: 100%; + } + + .\32xl\:max-h-screen { + max-height: 100vh; + } + + .\32xl\:max-w-none { + max-width: none; + } + + .\32xl\:max-w-xs { + max-width: 20rem; + } + + .\32xl\:max-w-sm { + max-width: 24rem; + } + + .\32xl\:max-w-md { + max-width: 28rem; + } + + .\32xl\:max-w-lg { + max-width: 32rem; + } + + .\32xl\:max-w-xl { + max-width: 36rem; + } + + .\32xl\:max-w-2xl { + max-width: 42rem; + } + + .\32xl\:max-w-3xl { + max-width: 48rem; + } + + .\32xl\:max-w-4xl { + max-width: 56rem; + } + + .\32xl\:max-w-5xl { + max-width: 64rem; + } + + .\32xl\:max-w-6xl { + max-width: 72rem; + } + + .\32xl\:max-w-7xl { + max-width: 80rem; + } + + .\32xl\:max-w-full { + max-width: 100%; + } + + .\32xl\:max-w-min { + max-width: -webkit-min-content; + max-width: -moz-min-content; + max-width: min-content; + } + + .\32xl\:max-w-max { + max-width: -webkit-max-content; + max-width: -moz-max-content; + max-width: max-content; + } + + .\32xl\:max-w-prose { + max-width: 65ch; + } + + .\32xl\:min-h-0 { + min-height: 0; + } + + .\32xl\:min-h-full { + min-height: 100%; + } + + .\32xl\:min-h-screen { + min-height: 100vh; + } + + .\32xl\:min-w-0 { + min-width: 0; + } + + .\32xl\:min-w-full { + min-width: 100%; + } + + .\32xl\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .\32xl\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .\32xl\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .\32xl\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .\32xl\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .\32xl\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .\32xl\:object-center { + -o-object-position: center; + object-position: center; + } + + .\32xl\:object-left { + -o-object-position: left; + object-position: left; + } + + .\32xl\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .\32xl\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .\32xl\:object-right { + -o-object-position: right; + object-position: right; + } + + .\32xl\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .\32xl\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .\32xl\:object-top { + -o-object-position: top; + object-position: top; + } + + .\32xl\:opacity-0 { + opacity: 0; + } + + .\32xl\:opacity-5 { + opacity: 0.05; + } + + .\32xl\:opacity-10 { + opacity: 0.1; + } + + .\32xl\:opacity-20 { + opacity: 0.2; + } + + .\32xl\:opacity-25 { + opacity: 0.25; + } + + .\32xl\:opacity-30 { + opacity: 0.3; + } + + .\32xl\:opacity-40 { + opacity: 0.4; + } + + .\32xl\:opacity-50 { + opacity: 0.5; + } + + .\32xl\:opacity-60 { + opacity: 0.6; + } + + .\32xl\:opacity-70 { + opacity: 0.7; + } + + .\32xl\:opacity-75 { + opacity: 0.75; + } + + .\32xl\:opacity-80 { + opacity: 0.8; + } + + .\32xl\:opacity-90 { + opacity: 0.9; + } + + .\32xl\:opacity-95 { + opacity: 0.95; + } + + .\32xl\:opacity-100 { + opacity: 1; + } + + .group:hover .\32xl\:group-hover\:opacity-0 { + opacity: 0; + } + + .group:hover .\32xl\:group-hover\:opacity-5 { + opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:opacity-10 { + opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:opacity-20 { + opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:opacity-25 { + opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:opacity-30 { + opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:opacity-40 { + opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:opacity-50 { + opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:opacity-60 { + opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:opacity-70 { + opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:opacity-75 { + opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:opacity-80 { + opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:opacity-90 { + opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:opacity-95 { + opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:opacity-100 { + opacity: 1; + } + + .\32xl\:focus-within\:opacity-0:focus-within { + opacity: 0; + } + + .\32xl\:focus-within\:opacity-5:focus-within { + opacity: 0.05; + } + + .\32xl\:focus-within\:opacity-10:focus-within { + opacity: 0.1; + } + + .\32xl\:focus-within\:opacity-20:focus-within { + opacity: 0.2; + } + + .\32xl\:focus-within\:opacity-25:focus-within { + opacity: 0.25; + } + + .\32xl\:focus-within\:opacity-30:focus-within { + opacity: 0.3; + } + + .\32xl\:focus-within\:opacity-40:focus-within { + opacity: 0.4; + } + + .\32xl\:focus-within\:opacity-50:focus-within { + opacity: 0.5; + } + + .\32xl\:focus-within\:opacity-60:focus-within { + opacity: 0.6; + } + + .\32xl\:focus-within\:opacity-70:focus-within { + opacity: 0.7; + } + + .\32xl\:focus-within\:opacity-75:focus-within { + opacity: 0.75; + } + + .\32xl\:focus-within\:opacity-80:focus-within { + opacity: 0.8; + } + + .\32xl\:focus-within\:opacity-90:focus-within { + opacity: 0.9; + } + + .\32xl\:focus-within\:opacity-95:focus-within { + opacity: 0.95; + } + + .\32xl\:focus-within\:opacity-100:focus-within { + opacity: 1; + } + + .\32xl\:hover\:opacity-0:hover { + opacity: 0; + } + + .\32xl\:hover\:opacity-5:hover { + opacity: 0.05; + } + + .\32xl\:hover\:opacity-10:hover { + opacity: 0.1; + } + + .\32xl\:hover\:opacity-20:hover { + opacity: 0.2; + } + + .\32xl\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .\32xl\:hover\:opacity-30:hover { + opacity: 0.3; + } + + .\32xl\:hover\:opacity-40:hover { + opacity: 0.4; + } + + .\32xl\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .\32xl\:hover\:opacity-60:hover { + opacity: 0.6; + } + + .\32xl\:hover\:opacity-70:hover { + opacity: 0.7; + } + + .\32xl\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .\32xl\:hover\:opacity-80:hover { + opacity: 0.8; + } + + .\32xl\:hover\:opacity-90:hover { + opacity: 0.9; + } + + .\32xl\:hover\:opacity-95:hover { + opacity: 0.95; + } + + .\32xl\:hover\:opacity-100:hover { + opacity: 1; + } + + .\32xl\:focus\:opacity-0:focus { + opacity: 0; + } + + .\32xl\:focus\:opacity-5:focus { + opacity: 0.05; + } + + .\32xl\:focus\:opacity-10:focus { + opacity: 0.1; + } + + .\32xl\:focus\:opacity-20:focus { + opacity: 0.2; + } + + .\32xl\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .\32xl\:focus\:opacity-30:focus { + opacity: 0.3; + } + + .\32xl\:focus\:opacity-40:focus { + opacity: 0.4; + } + + .\32xl\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .\32xl\:focus\:opacity-60:focus { + opacity: 0.6; + } + + .\32xl\:focus\:opacity-70:focus { + opacity: 0.7; + } + + .\32xl\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .\32xl\:focus\:opacity-80:focus { + opacity: 0.8; + } + + .\32xl\:focus\:opacity-90:focus { + opacity: 0.9; + } + + .\32xl\:focus\:opacity-95:focus { + opacity: 0.95; + } + + .\32xl\:focus\:opacity-100:focus { + opacity: 1; + } + + .\32xl\:outline-none { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:outline-white { + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:outline-black { + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-none:focus-within { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-white:focus-within { + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:focus-within\:outline-black:focus-within { + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-white:focus { + outline: 2px dotted white; + outline-offset: 2px; + } + + .\32xl\:focus\:outline-black:focus { + outline: 2px dotted black; + outline-offset: 2px; + } + + .\32xl\:overflow-auto { + overflow: auto; + } + + .\32xl\:overflow-hidden { + overflow: hidden; + } + + .\32xl\:overflow-visible { + overflow: visible; + } + + .\32xl\:overflow-scroll { + overflow: scroll; + } + + .\32xl\:overflow-x-auto { + overflow-x: auto; + } + + .\32xl\:overflow-y-auto { + overflow-y: auto; + } + + .\32xl\:overflow-x-hidden { + overflow-x: hidden; + } + + .\32xl\:overflow-y-hidden { + overflow-y: hidden; + } + + .\32xl\:overflow-x-visible { + overflow-x: visible; + } + + .\32xl\:overflow-y-visible { + overflow-y: visible; + } + + .\32xl\:overflow-x-scroll { + overflow-x: scroll; + } + + .\32xl\:overflow-y-scroll { + overflow-y: scroll; + } + + .\32xl\:overscroll-auto { + -ms-scroll-chaining: chained; + overscroll-behavior: auto; + } + + .\32xl\:overscroll-contain { + -ms-scroll-chaining: none; + overscroll-behavior: contain; + } + + .\32xl\:overscroll-none { + -ms-scroll-chaining: none; + overscroll-behavior: none; + } + + .\32xl\:overscroll-y-auto { + overscroll-behavior-y: auto; + } + + .\32xl\:overscroll-y-contain { + overscroll-behavior-y: contain; + } + + .\32xl\:overscroll-y-none { + overscroll-behavior-y: none; + } + + .\32xl\:overscroll-x-auto { + overscroll-behavior-x: auto; + } + + .\32xl\:overscroll-x-contain { + overscroll-behavior-x: contain; + } + + .\32xl\:overscroll-x-none { + overscroll-behavior-x: none; + } + + .\32xl\:p-0 { + padding: 0px; + } + + .\32xl\:p-1 { + padding: 0.25rem; + } + + .\32xl\:p-2 { + padding: 0.5rem; + } + + .\32xl\:p-3 { + padding: 0.75rem; + } + + .\32xl\:p-4 { + padding: 1rem; + } + + .\32xl\:p-5 { + padding: 1.25rem; + } + + .\32xl\:p-6 { + padding: 1.5rem; + } + + .\32xl\:p-7 { + padding: 1.75rem; + } + + .\32xl\:p-8 { + padding: 2rem; + } + + .\32xl\:p-9 { + padding: 2.25rem; + } + + .\32xl\:p-10 { + padding: 2.5rem; + } + + .\32xl\:p-11 { + padding: 2.75rem; + } + + .\32xl\:p-12 { + padding: 3rem; + } + + .\32xl\:p-14 { + padding: 3.5rem; + } + + .\32xl\:p-16 { + padding: 4rem; + } + + .\32xl\:p-20 { + padding: 5rem; + } + + .\32xl\:p-24 { + padding: 6rem; + } + + .\32xl\:p-28 { + padding: 7rem; + } + + .\32xl\:p-32 { + padding: 8rem; + } + + .\32xl\:p-36 { + padding: 9rem; + } + + .\32xl\:p-40 { + padding: 10rem; + } + + .\32xl\:p-44 { + padding: 11rem; + } + + .\32xl\:p-48 { + padding: 12rem; + } + + .\32xl\:p-52 { + padding: 13rem; + } + + .\32xl\:p-56 { + padding: 14rem; + } + + .\32xl\:p-60 { + padding: 15rem; + } + + .\32xl\:p-64 { + padding: 16rem; + } + + .\32xl\:p-72 { + padding: 18rem; + } + + .\32xl\:p-80 { + padding: 20rem; + } + + .\32xl\:p-96 { + padding: 24rem; + } + + .\32xl\:p-px { + padding: 1px; + } + + .\32xl\:p-0\.5 { + padding: 0.125rem; + } + + .\32xl\:p-1\.5 { + padding: 0.375rem; + } + + .\32xl\:p-2\.5 { + padding: 0.625rem; + } + + .\32xl\:p-3\.5 { + padding: 0.875rem; + } + + .\32xl\:py-0 { + padding-top: 0px; + padding-bottom: 0px; + } + + .\32xl\:px-0 { + padding-left: 0px; + padding-right: 0px; + } + + .\32xl\:py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + } + + .\32xl\:px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; + } + + .\32xl\:py-2 { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + } + + .\32xl\:px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; + } + + .\32xl\:py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; + } + + .\32xl\:px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; + } + + .\32xl\:py-4 { + padding-top: 1rem; + padding-bottom: 1rem; + } + + .\32xl\:px-4 { + padding-left: 1rem; + padding-right: 1rem; + } + + .\32xl\:py-5 { + padding-top: 1.25rem; + padding-bottom: 1.25rem; + } + + .\32xl\:px-5 { + padding-left: 1.25rem; + padding-right: 1.25rem; + } + + .\32xl\:py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; + } + + .\32xl\:px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; + } + + .\32xl\:py-7 { + padding-top: 1.75rem; + padding-bottom: 1.75rem; + } + + .\32xl\:px-7 { + padding-left: 1.75rem; + padding-right: 1.75rem; + } + + .\32xl\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .\32xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .\32xl\:py-9 { + padding-top: 2.25rem; + padding-bottom: 2.25rem; + } + + .\32xl\:px-9 { + padding-left: 2.25rem; + padding-right: 2.25rem; + } + + .\32xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .\32xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .\32xl\:py-11 { + padding-top: 2.75rem; + padding-bottom: 2.75rem; + } + + .\32xl\:px-11 { + padding-left: 2.75rem; + padding-right: 2.75rem; + } + + .\32xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .\32xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .\32xl\:py-14 { + padding-top: 3.5rem; + padding-bottom: 3.5rem; + } + + .\32xl\:px-14 { + padding-left: 3.5rem; + padding-right: 3.5rem; + } + + .\32xl\:py-16 { + padding-top: 4rem; + padding-bottom: 4rem; + } + + .\32xl\:px-16 { + padding-left: 4rem; + padding-right: 4rem; + } + + .\32xl\:py-20 { + padding-top: 5rem; + padding-bottom: 5rem; + } + + .\32xl\:px-20 { + padding-left: 5rem; + padding-right: 5rem; + } + + .\32xl\:py-24 { + padding-top: 6rem; + padding-bottom: 6rem; + } + + .\32xl\:px-24 { + padding-left: 6rem; + padding-right: 6rem; + } + + .\32xl\:py-28 { + padding-top: 7rem; + padding-bottom: 7rem; + } + + .\32xl\:px-28 { + padding-left: 7rem; + padding-right: 7rem; + } + + .\32xl\:py-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .\32xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .\32xl\:py-36 { + padding-top: 9rem; + padding-bottom: 9rem; + } + + .\32xl\:px-36 { + padding-left: 9rem; + padding-right: 9rem; + } + + .\32xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .\32xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .\32xl\:py-44 { + padding-top: 11rem; + padding-bottom: 11rem; + } + + .\32xl\:px-44 { + padding-left: 11rem; + padding-right: 11rem; + } + + .\32xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .\32xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .\32xl\:py-52 { + padding-top: 13rem; + padding-bottom: 13rem; + } + + .\32xl\:px-52 { + padding-left: 13rem; + padding-right: 13rem; + } + + .\32xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .\32xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .\32xl\:py-60 { + padding-top: 15rem; + padding-bottom: 15rem; + } + + .\32xl\:px-60 { + padding-left: 15rem; + padding-right: 15rem; + } + + .\32xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .\32xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .\32xl\:py-72 { + padding-top: 18rem; + padding-bottom: 18rem; + } + + .\32xl\:px-72 { + padding-left: 18rem; + padding-right: 18rem; + } + + .\32xl\:py-80 { + padding-top: 20rem; + padding-bottom: 20rem; + } + + .\32xl\:px-80 { + padding-left: 20rem; + padding-right: 20rem; + } + + .\32xl\:py-96 { + padding-top: 24rem; + padding-bottom: 24rem; + } + + .\32xl\:px-96 { + padding-left: 24rem; + padding-right: 24rem; + } + + .\32xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .\32xl\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .\32xl\:py-0\.5 { + padding-top: 0.125rem; + padding-bottom: 0.125rem; + } + + .\32xl\:px-0\.5 { + padding-left: 0.125rem; + padding-right: 0.125rem; + } + + .\32xl\:py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; + } + + .\32xl\:px-1\.5 { + padding-left: 0.375rem; + padding-right: 0.375rem; + } + + .\32xl\:py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; + } + + .\32xl\:px-2\.5 { + padding-left: 0.625rem; + padding-right: 0.625rem; + } + + .\32xl\:py-3\.5 { + padding-top: 0.875rem; + padding-bottom: 0.875rem; + } + + .\32xl\:px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; + } + + .\32xl\:pt-0 { + padding-top: 0px; + } + + .\32xl\:pr-0 { + padding-right: 0px; + } + + .\32xl\:pb-0 { + padding-bottom: 0px; + } + + .\32xl\:pl-0 { + padding-left: 0px; + } + + .\32xl\:pt-1 { + padding-top: 0.25rem; + } + + .\32xl\:pr-1 { + padding-right: 0.25rem; + } + + .\32xl\:pb-1 { + padding-bottom: 0.25rem; + } + + .\32xl\:pl-1 { + padding-left: 0.25rem; + } + + .\32xl\:pt-2 { + padding-top: 0.5rem; + } + + .\32xl\:pr-2 { + padding-right: 0.5rem; + } + + .\32xl\:pb-2 { + padding-bottom: 0.5rem; + } + + .\32xl\:pl-2 { + padding-left: 0.5rem; + } + + .\32xl\:pt-3 { + padding-top: 0.75rem; + } + + .\32xl\:pr-3 { + padding-right: 0.75rem; + } + + .\32xl\:pb-3 { + padding-bottom: 0.75rem; + } + + .\32xl\:pl-3 { + padding-left: 0.75rem; + } + + .\32xl\:pt-4 { + padding-top: 1rem; + } + + .\32xl\:pr-4 { + padding-right: 1rem; + } + + .\32xl\:pb-4 { + padding-bottom: 1rem; + } + + .\32xl\:pl-4 { + padding-left: 1rem; + } + + .\32xl\:pt-5 { + padding-top: 1.25rem; + } + + .\32xl\:pr-5 { + padding-right: 1.25rem; + } + + .\32xl\:pb-5 { + padding-bottom: 1.25rem; + } + + .\32xl\:pl-5 { + padding-left: 1.25rem; + } + + .\32xl\:pt-6 { + padding-top: 1.5rem; + } + + .\32xl\:pr-6 { + padding-right: 1.5rem; + } + + .\32xl\:pb-6 { + padding-bottom: 1.5rem; + } + + .\32xl\:pl-6 { + padding-left: 1.5rem; + } + + .\32xl\:pt-7 { + padding-top: 1.75rem; + } + + .\32xl\:pr-7 { + padding-right: 1.75rem; + } + + .\32xl\:pb-7 { + padding-bottom: 1.75rem; + } + + .\32xl\:pl-7 { + padding-left: 1.75rem; + } + + .\32xl\:pt-8 { + padding-top: 2rem; + } + + .\32xl\:pr-8 { + padding-right: 2rem; + } + + .\32xl\:pb-8 { + padding-bottom: 2rem; + } + + .\32xl\:pl-8 { + padding-left: 2rem; + } + + .\32xl\:pt-9 { + padding-top: 2.25rem; + } + + .\32xl\:pr-9 { + padding-right: 2.25rem; + } + + .\32xl\:pb-9 { + padding-bottom: 2.25rem; + } + + .\32xl\:pl-9 { + padding-left: 2.25rem; + } + + .\32xl\:pt-10 { + padding-top: 2.5rem; + } + + .\32xl\:pr-10 { + padding-right: 2.5rem; + } + + .\32xl\:pb-10 { + padding-bottom: 2.5rem; + } + + .\32xl\:pl-10 { + padding-left: 2.5rem; + } + + .\32xl\:pt-11 { + padding-top: 2.75rem; + } + + .\32xl\:pr-11 { + padding-right: 2.75rem; + } + + .\32xl\:pb-11 { + padding-bottom: 2.75rem; + } + + .\32xl\:pl-11 { + padding-left: 2.75rem; + } + + .\32xl\:pt-12 { + padding-top: 3rem; + } + + .\32xl\:pr-12 { + padding-right: 3rem; + } + + .\32xl\:pb-12 { + padding-bottom: 3rem; + } + + .\32xl\:pl-12 { + padding-left: 3rem; + } + + .\32xl\:pt-14 { + padding-top: 3.5rem; + } + + .\32xl\:pr-14 { + padding-right: 3.5rem; + } + + .\32xl\:pb-14 { + padding-bottom: 3.5rem; + } + + .\32xl\:pl-14 { + padding-left: 3.5rem; + } + + .\32xl\:pt-16 { + padding-top: 4rem; + } + + .\32xl\:pr-16 { + padding-right: 4rem; + } + + .\32xl\:pb-16 { + padding-bottom: 4rem; + } + + .\32xl\:pl-16 { + padding-left: 4rem; + } + + .\32xl\:pt-20 { + padding-top: 5rem; + } + + .\32xl\:pr-20 { + padding-right: 5rem; + } + + .\32xl\:pb-20 { + padding-bottom: 5rem; + } + + .\32xl\:pl-20 { + padding-left: 5rem; + } + + .\32xl\:pt-24 { + padding-top: 6rem; + } + + .\32xl\:pr-24 { + padding-right: 6rem; + } + + .\32xl\:pb-24 { + padding-bottom: 6rem; + } + + .\32xl\:pl-24 { + padding-left: 6rem; + } + + .\32xl\:pt-28 { + padding-top: 7rem; + } + + .\32xl\:pr-28 { + padding-right: 7rem; + } + + .\32xl\:pb-28 { + padding-bottom: 7rem; + } + + .\32xl\:pl-28 { + padding-left: 7rem; + } + + .\32xl\:pt-32 { + padding-top: 8rem; + } + + .\32xl\:pr-32 { + padding-right: 8rem; + } + + .\32xl\:pb-32 { + padding-bottom: 8rem; + } + + .\32xl\:pl-32 { + padding-left: 8rem; + } + + .\32xl\:pt-36 { + padding-top: 9rem; + } + + .\32xl\:pr-36 { + padding-right: 9rem; + } + + .\32xl\:pb-36 { + padding-bottom: 9rem; + } + + .\32xl\:pl-36 { + padding-left: 9rem; + } + + .\32xl\:pt-40 { + padding-top: 10rem; + } + + .\32xl\:pr-40 { + padding-right: 10rem; + } + + .\32xl\:pb-40 { + padding-bottom: 10rem; + } + + .\32xl\:pl-40 { + padding-left: 10rem; + } + + .\32xl\:pt-44 { + padding-top: 11rem; + } + + .\32xl\:pr-44 { + padding-right: 11rem; + } + + .\32xl\:pb-44 { + padding-bottom: 11rem; + } + + .\32xl\:pl-44 { + padding-left: 11rem; + } + + .\32xl\:pt-48 { + padding-top: 12rem; + } + + .\32xl\:pr-48 { + padding-right: 12rem; + } + + .\32xl\:pb-48 { + padding-bottom: 12rem; + } + + .\32xl\:pl-48 { + padding-left: 12rem; + } + + .\32xl\:pt-52 { + padding-top: 13rem; + } + + .\32xl\:pr-52 { + padding-right: 13rem; + } + + .\32xl\:pb-52 { + padding-bottom: 13rem; + } + + .\32xl\:pl-52 { + padding-left: 13rem; + } + + .\32xl\:pt-56 { + padding-top: 14rem; + } + + .\32xl\:pr-56 { + padding-right: 14rem; + } + + .\32xl\:pb-56 { + padding-bottom: 14rem; + } + + .\32xl\:pl-56 { + padding-left: 14rem; + } + + .\32xl\:pt-60 { + padding-top: 15rem; + } + + .\32xl\:pr-60 { + padding-right: 15rem; + } + + .\32xl\:pb-60 { + padding-bottom: 15rem; + } + + .\32xl\:pl-60 { + padding-left: 15rem; + } + + .\32xl\:pt-64 { + padding-top: 16rem; + } + + .\32xl\:pr-64 { + padding-right: 16rem; + } + + .\32xl\:pb-64 { + padding-bottom: 16rem; + } + + .\32xl\:pl-64 { + padding-left: 16rem; + } + + .\32xl\:pt-72 { + padding-top: 18rem; + } + + .\32xl\:pr-72 { + padding-right: 18rem; + } + + .\32xl\:pb-72 { + padding-bottom: 18rem; + } + + .\32xl\:pl-72 { + padding-left: 18rem; + } + + .\32xl\:pt-80 { + padding-top: 20rem; + } + + .\32xl\:pr-80 { + padding-right: 20rem; + } + + .\32xl\:pb-80 { + padding-bottom: 20rem; + } + + .\32xl\:pl-80 { + padding-left: 20rem; + } + + .\32xl\:pt-96 { + padding-top: 24rem; + } + + .\32xl\:pr-96 { + padding-right: 24rem; + } + + .\32xl\:pb-96 { + padding-bottom: 24rem; + } + + .\32xl\:pl-96 { + padding-left: 24rem; + } + + .\32xl\:pt-px { + padding-top: 1px; + } + + .\32xl\:pr-px { + padding-right: 1px; + } + + .\32xl\:pb-px { + padding-bottom: 1px; + } + + .\32xl\:pl-px { + padding-left: 1px; + } + + .\32xl\:pt-0\.5 { + padding-top: 0.125rem; + } + + .\32xl\:pr-0\.5 { + padding-right: 0.125rem; + } + + .\32xl\:pb-0\.5 { + padding-bottom: 0.125rem; + } + + .\32xl\:pl-0\.5 { + padding-left: 0.125rem; + } + + .\32xl\:pt-1\.5 { + padding-top: 0.375rem; + } + + .\32xl\:pr-1\.5 { + padding-right: 0.375rem; + } + + .\32xl\:pb-1\.5 { + padding-bottom: 0.375rem; + } + + .\32xl\:pl-1\.5 { + padding-left: 0.375rem; + } + + .\32xl\:pt-2\.5 { + padding-top: 0.625rem; + } + + .\32xl\:pr-2\.5 { + padding-right: 0.625rem; + } + + .\32xl\:pb-2\.5 { + padding-bottom: 0.625rem; + } + + .\32xl\:pl-2\.5 { + padding-left: 0.625rem; + } + + .\32xl\:pt-3\.5 { + padding-top: 0.875rem; + } + + .\32xl\:pr-3\.5 { + padding-right: 0.875rem; + } + + .\32xl\:pb-3\.5 { + padding-bottom: 0.875rem; + } + + .\32xl\:pl-3\.5 { + padding-left: 0.875rem; + } + + .\32xl\:placeholder-current::-webkit-input-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current::-moz-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current:-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current::-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:placeholder-current::placeholder { + color: currentColor; + } + + .\32xl\:placeholder-transparent::-webkit-input-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent::-moz-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent:-ms-input-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent::-ms-input-placeholder { + color: transparent; + } + + .\32xl\:placeholder-transparent::placeholder { + color: transparent; + } + + .\32xl\:placeholder-black::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-black::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-white::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-darkCoolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-coolGray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-indigo-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-violet-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-yellow-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-red-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-green-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-blue-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-50::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-100::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-200::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-300::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-400::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-500::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-600::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-700::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-800::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-gray-900::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-current:focus::-webkit-input-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::-moz-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus:-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::-ms-input-placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-current:focus::placeholder { + color: currentColor; + } + + .\32xl\:focus\:placeholder-transparent:focus::-webkit-input-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::-ms-input-placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; + } + + .\32xl\:focus\:placeholder-black:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-black:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(0, 0, 0, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-white:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 255, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 246, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 237, 239, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 209, 214, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(176, 181, 189, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 126, 140, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(58, 71, 91, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(52, 64, 82, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 53, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 43, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-darkCoolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(28, 35, 45, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(247, 248, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(238, 240, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(213, 218, 225, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(187, 195, 207, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(136, 150, 171, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(85, 105, 135, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(77, 95, 122, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(64, 79, 101, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 63, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-coolGray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 51, 66, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 246, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(240, 238, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(218, 212, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(195, 185, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(150, 133, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(105, 81, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(95, 73, 230, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(79, 61, 191, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(63, 49, 153, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-indigo-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(51, 40, 125, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 247, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(246, 238, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(233, 213, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(220, 187, 252, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(194, 136, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(168, 85, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(151, 77, 222, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(126, 64, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(101, 51, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-violet-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(82, 42, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(255, 250, 243, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 245, 231, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 231, 194, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 216, 157, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(248, 187, 84, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 158, 11, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(221, 142, 10, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(184, 119, 8, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(147, 95, 7, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-yellow-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(120, 77, 5, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(254, 247, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(253, 238, 236, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(251, 214, 208, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 189, 180, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 139, 124, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(239, 88, 68, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(215, 80, 61, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(179, 67, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(143, 53, 41, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-red-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(117, 44, 33, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(244, 253, 247, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(234, 250, 240, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(202, 244, 217, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(170, 237, 195, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(106, 223, 149, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(42, 209, 103, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(38, 188, 94, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(32, 157, 78, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(25, 125, 62, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-green-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(21, 102, 51, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(245, 249, 255, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(235, 243, 254, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(206, 224, 253, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(177, 205, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(118, 168, 249, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(59, 130, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(53, 117, 221, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(44, 98, 185, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(35, 78, 148, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-blue-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(29, 64, 121, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-50:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(249, 250, 251, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-100:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(243, 244, 246, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-200:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(229, 231, 235, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-300:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(209, 213, 219, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-400:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(156, 163, 175, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-500:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(107, 114, 128, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-600:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(75, 85, 99, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-700:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(55, 65, 81, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-800:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(31, 41, 55, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:focus\:placeholder-gray-900:focus::placeholder { + --tw-placeholder-opacity: 1; + color: rgba(17, 24, 39, var(--tw-placeholder-opacity)); + } + + .\32xl\:placeholder-opacity-0::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-0::placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:placeholder-opacity-5::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-5::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:placeholder-opacity-10::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-10::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:placeholder-opacity-20::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-20::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:placeholder-opacity-25::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-25::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:placeholder-opacity-30::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-30::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:placeholder-opacity-40::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-40::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:placeholder-opacity-50::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-50::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:placeholder-opacity-60::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-60::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:placeholder-opacity-70::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-70::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:placeholder-opacity-75::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-75::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:placeholder-opacity-80::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-80::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:placeholder-opacity-90::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-90::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:placeholder-opacity-95::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-95::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:placeholder-opacity-100::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:placeholder-opacity-100::placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-0:focus::placeholder { + --tw-placeholder-opacity: 0; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-5:focus::placeholder { + --tw-placeholder-opacity: 0.05; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-10:focus::placeholder { + --tw-placeholder-opacity: 0.1; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-20:focus::placeholder { + --tw-placeholder-opacity: 0.2; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-25:focus::placeholder { + --tw-placeholder-opacity: 0.25; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-30:focus::placeholder { + --tw-placeholder-opacity: 0.3; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-40:focus::placeholder { + --tw-placeholder-opacity: 0.4; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-50:focus::placeholder { + --tw-placeholder-opacity: 0.5; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-60:focus::placeholder { + --tw-placeholder-opacity: 0.6; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-70:focus::placeholder { + --tw-placeholder-opacity: 0.7; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-75:focus::placeholder { + --tw-placeholder-opacity: 0.75; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-80:focus::placeholder { + --tw-placeholder-opacity: 0.8; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-90:focus::placeholder { + --tw-placeholder-opacity: 0.9; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-moz-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-95:focus::placeholder { + --tw-placeholder-opacity: 0.95; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-webkit-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:focus\:placeholder-opacity-100:focus::placeholder { + --tw-placeholder-opacity: 1; + } + + .\32xl\:pointer-events-none { + pointer-events: none; + } + + .\32xl\:pointer-events-auto { + pointer-events: auto; + } + + .\32xl\:static { + position: static; + } + + .\32xl\:fixed { + position: fixed; + } + + .\32xl\:absolute { + position: absolute; + } + + .\32xl\:relative { + position: relative; + } + + .\32xl\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .\32xl\:inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .\32xl\:inset-1 { + top: 0.25rem; + right: 0.25rem; + bottom: 0.25rem; + left: 0.25rem; + } + + .\32xl\:inset-2 { + top: 0.5rem; + right: 0.5rem; + bottom: 0.5rem; + left: 0.5rem; + } + + .\32xl\:inset-3 { + top: 0.75rem; + right: 0.75rem; + bottom: 0.75rem; + left: 0.75rem; + } + + .\32xl\:inset-4 { + top: 1rem; + right: 1rem; + bottom: 1rem; + left: 1rem; + } + + .\32xl\:inset-5 { + top: 1.25rem; + right: 1.25rem; + bottom: 1.25rem; + left: 1.25rem; + } + + .\32xl\:inset-6 { + top: 1.5rem; + right: 1.5rem; + bottom: 1.5rem; + left: 1.5rem; + } + + .\32xl\:inset-7 { + top: 1.75rem; + right: 1.75rem; + bottom: 1.75rem; + left: 1.75rem; + } + + .\32xl\:inset-8 { + top: 2rem; + right: 2rem; + bottom: 2rem; + left: 2rem; + } + + .\32xl\:inset-9 { + top: 2.25rem; + right: 2.25rem; + bottom: 2.25rem; + left: 2.25rem; + } + + .\32xl\:inset-10 { + top: 2.5rem; + right: 2.5rem; + bottom: 2.5rem; + left: 2.5rem; + } + + .\32xl\:inset-11 { + top: 2.75rem; + right: 2.75rem; + bottom: 2.75rem; + left: 2.75rem; + } + + .\32xl\:inset-12 { + top: 3rem; + right: 3rem; + bottom: 3rem; + left: 3rem; + } + + .\32xl\:inset-14 { + top: 3.5rem; + right: 3.5rem; + bottom: 3.5rem; + left: 3.5rem; + } + + .\32xl\:inset-16 { + top: 4rem; + right: 4rem; + bottom: 4rem; + left: 4rem; + } + + .\32xl\:inset-20 { + top: 5rem; + right: 5rem; + bottom: 5rem; + left: 5rem; + } + + .\32xl\:inset-24 { + top: 6rem; + right: 6rem; + bottom: 6rem; + left: 6rem; + } + + .\32xl\:inset-28 { + top: 7rem; + right: 7rem; + bottom: 7rem; + left: 7rem; + } + + .\32xl\:inset-32 { + top: 8rem; + right: 8rem; + bottom: 8rem; + left: 8rem; + } + + .\32xl\:inset-36 { + top: 9rem; + right: 9rem; + bottom: 9rem; + left: 9rem; + } + + .\32xl\:inset-40 { + top: 10rem; + right: 10rem; + bottom: 10rem; + left: 10rem; + } + + .\32xl\:inset-44 { + top: 11rem; + right: 11rem; + bottom: 11rem; + left: 11rem; + } + + .\32xl\:inset-48 { + top: 12rem; + right: 12rem; + bottom: 12rem; + left: 12rem; + } + + .\32xl\:inset-52 { + top: 13rem; + right: 13rem; + bottom: 13rem; + left: 13rem; + } + + .\32xl\:inset-56 { + top: 14rem; + right: 14rem; + bottom: 14rem; + left: 14rem; + } + + .\32xl\:inset-60 { + top: 15rem; + right: 15rem; + bottom: 15rem; + left: 15rem; + } + + .\32xl\:inset-64 { + top: 16rem; + right: 16rem; + bottom: 16rem; + left: 16rem; + } + + .\32xl\:inset-72 { + top: 18rem; + right: 18rem; + bottom: 18rem; + left: 18rem; + } + + .\32xl\:inset-80 { + top: 20rem; + right: 20rem; + bottom: 20rem; + left: 20rem; + } + + .\32xl\:inset-96 { + top: 24rem; + right: 24rem; + bottom: 24rem; + left: 24rem; + } + + .\32xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .\32xl\:inset-px { + top: 1px; + right: 1px; + bottom: 1px; + left: 1px; + } + + .\32xl\:inset-0\.5 { + top: 0.125rem; + right: 0.125rem; + bottom: 0.125rem; + left: 0.125rem; + } + + .\32xl\:inset-1\.5 { + top: 0.375rem; + right: 0.375rem; + bottom: 0.375rem; + left: 0.375rem; + } + + .\32xl\:inset-2\.5 { + top: 0.625rem; + right: 0.625rem; + bottom: 0.625rem; + left: 0.625rem; + } + + .\32xl\:inset-3\.5 { + top: 0.875rem; + right: 0.875rem; + bottom: 0.875rem; + left: 0.875rem; + } + + .\32xl\:-inset-0 { + top: 0px; + right: 0px; + bottom: 0px; + left: 0px; + } + + .\32xl\:-inset-1 { + top: -0.25rem; + right: -0.25rem; + bottom: -0.25rem; + left: -0.25rem; + } + + .\32xl\:-inset-2 { + top: -0.5rem; + right: -0.5rem; + bottom: -0.5rem; + left: -0.5rem; + } + + .\32xl\:-inset-3 { + top: -0.75rem; + right: -0.75rem; + bottom: -0.75rem; + left: -0.75rem; + } + + .\32xl\:-inset-4 { + top: -1rem; + right: -1rem; + bottom: -1rem; + left: -1rem; + } + + .\32xl\:-inset-5 { + top: -1.25rem; + right: -1.25rem; + bottom: -1.25rem; + left: -1.25rem; + } + + .\32xl\:-inset-6 { + top: -1.5rem; + right: -1.5rem; + bottom: -1.5rem; + left: -1.5rem; + } + + .\32xl\:-inset-7 { + top: -1.75rem; + right: -1.75rem; + bottom: -1.75rem; + left: -1.75rem; + } + + .\32xl\:-inset-8 { + top: -2rem; + right: -2rem; + bottom: -2rem; + left: -2rem; + } + + .\32xl\:-inset-9 { + top: -2.25rem; + right: -2.25rem; + bottom: -2.25rem; + left: -2.25rem; + } + + .\32xl\:-inset-10 { + top: -2.5rem; + right: -2.5rem; + bottom: -2.5rem; + left: -2.5rem; + } + + .\32xl\:-inset-11 { + top: -2.75rem; + right: -2.75rem; + bottom: -2.75rem; + left: -2.75rem; + } + + .\32xl\:-inset-12 { + top: -3rem; + right: -3rem; + bottom: -3rem; + left: -3rem; + } + + .\32xl\:-inset-14 { + top: -3.5rem; + right: -3.5rem; + bottom: -3.5rem; + left: -3.5rem; + } + + .\32xl\:-inset-16 { + top: -4rem; + right: -4rem; + bottom: -4rem; + left: -4rem; + } + + .\32xl\:-inset-20 { + top: -5rem; + right: -5rem; + bottom: -5rem; + left: -5rem; + } + + .\32xl\:-inset-24 { + top: -6rem; + right: -6rem; + bottom: -6rem; + left: -6rem; + } + + .\32xl\:-inset-28 { + top: -7rem; + right: -7rem; + bottom: -7rem; + left: -7rem; + } + + .\32xl\:-inset-32 { + top: -8rem; + right: -8rem; + bottom: -8rem; + left: -8rem; + } + + .\32xl\:-inset-36 { + top: -9rem; + right: -9rem; + bottom: -9rem; + left: -9rem; + } + + .\32xl\:-inset-40 { + top: -10rem; + right: -10rem; + bottom: -10rem; + left: -10rem; + } + + .\32xl\:-inset-44 { + top: -11rem; + right: -11rem; + bottom: -11rem; + left: -11rem; + } + + .\32xl\:-inset-48 { + top: -12rem; + right: -12rem; + bottom: -12rem; + left: -12rem; + } + + .\32xl\:-inset-52 { + top: -13rem; + right: -13rem; + bottom: -13rem; + left: -13rem; + } + + .\32xl\:-inset-56 { + top: -14rem; + right: -14rem; + bottom: -14rem; + left: -14rem; + } + + .\32xl\:-inset-60 { + top: -15rem; + right: -15rem; + bottom: -15rem; + left: -15rem; + } + + .\32xl\:-inset-64 { + top: -16rem; + right: -16rem; + bottom: -16rem; + left: -16rem; + } + + .\32xl\:-inset-72 { + top: -18rem; + right: -18rem; + bottom: -18rem; + left: -18rem; + } + + .\32xl\:-inset-80 { + top: -20rem; + right: -20rem; + bottom: -20rem; + left: -20rem; + } + + .\32xl\:-inset-96 { + top: -24rem; + right: -24rem; + bottom: -24rem; + left: -24rem; + } + + .\32xl\:-inset-px { + top: -1px; + right: -1px; + bottom: -1px; + left: -1px; + } + + .\32xl\:-inset-0\.5 { + top: -0.125rem; + right: -0.125rem; + bottom: -0.125rem; + left: -0.125rem; + } + + .\32xl\:-inset-1\.5 { + top: -0.375rem; + right: -0.375rem; + bottom: -0.375rem; + left: -0.375rem; + } + + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .\32xl\:inset-y-0 { + top: 0px; + bottom: 0px; + } + + .\32xl\:inset-x-0 { + right: 0px; + left: 0px; + } + + .\32xl\:inset-y-1 { + top: 0.25rem; + bottom: 0.25rem; + } + + .\32xl\:inset-x-1 { + right: 0.25rem; + left: 0.25rem; + } + + .\32xl\:inset-y-2 { + top: 0.5rem; + bottom: 0.5rem; + } + + .\32xl\:inset-x-2 { + right: 0.5rem; + left: 0.5rem; + } + + .\32xl\:inset-y-3 { + top: 0.75rem; + bottom: 0.75rem; + } + + .\32xl\:inset-x-3 { + right: 0.75rem; + left: 0.75rem; + } + + .\32xl\:inset-y-4 { + top: 1rem; + bottom: 1rem; + } + + .\32xl\:inset-x-4 { + right: 1rem; + left: 1rem; + } + + .\32xl\:inset-y-5 { + top: 1.25rem; + bottom: 1.25rem; + } + + .\32xl\:inset-x-5 { + right: 1.25rem; + left: 1.25rem; + } + + .\32xl\:inset-y-6 { + top: 1.5rem; + bottom: 1.5rem; + } + + .\32xl\:inset-x-6 { + right: 1.5rem; + left: 1.5rem; + } + + .\32xl\:inset-y-7 { + top: 1.75rem; + bottom: 1.75rem; + } + + .\32xl\:inset-x-7 { + right: 1.75rem; + left: 1.75rem; + } + + .\32xl\:inset-y-8 { + top: 2rem; + bottom: 2rem; + } + + .\32xl\:inset-x-8 { + right: 2rem; + left: 2rem; + } + + .\32xl\:inset-y-9 { + top: 2.25rem; + bottom: 2.25rem; + } + + .\32xl\:inset-x-9 { + right: 2.25rem; + left: 2.25rem; + } + + .\32xl\:inset-y-10 { + top: 2.5rem; + bottom: 2.5rem; + } + + .\32xl\:inset-x-10 { + right: 2.5rem; + left: 2.5rem; + } + + .\32xl\:inset-y-11 { + top: 2.75rem; + bottom: 2.75rem; + } + + .\32xl\:inset-x-11 { + right: 2.75rem; + left: 2.75rem; + } + + .\32xl\:inset-y-12 { + top: 3rem; + bottom: 3rem; + } + + .\32xl\:inset-x-12 { + right: 3rem; + left: 3rem; + } + + .\32xl\:inset-y-14 { + top: 3.5rem; + bottom: 3.5rem; + } + + .\32xl\:inset-x-14 { + right: 3.5rem; + left: 3.5rem; + } + + .\32xl\:inset-y-16 { + top: 4rem; + bottom: 4rem; + } + + .\32xl\:inset-x-16 { + right: 4rem; + left: 4rem; + } + + .\32xl\:inset-y-20 { + top: 5rem; + bottom: 5rem; + } + + .\32xl\:inset-x-20 { + right: 5rem; + left: 5rem; + } + + .\32xl\:inset-y-24 { + top: 6rem; + bottom: 6rem; + } + + .\32xl\:inset-x-24 { + right: 6rem; + left: 6rem; + } + + .\32xl\:inset-y-28 { + top: 7rem; + bottom: 7rem; + } + + .\32xl\:inset-x-28 { + right: 7rem; + left: 7rem; + } + + .\32xl\:inset-y-32 { + top: 8rem; + bottom: 8rem; + } + + .\32xl\:inset-x-32 { + right: 8rem; + left: 8rem; + } + + .\32xl\:inset-y-36 { + top: 9rem; + bottom: 9rem; + } + + .\32xl\:inset-x-36 { + right: 9rem; + left: 9rem; + } + + .\32xl\:inset-y-40 { + top: 10rem; + bottom: 10rem; + } + + .\32xl\:inset-x-40 { + right: 10rem; + left: 10rem; + } + + .\32xl\:inset-y-44 { + top: 11rem; + bottom: 11rem; + } + + .\32xl\:inset-x-44 { + right: 11rem; + left: 11rem; + } + + .\32xl\:inset-y-48 { + top: 12rem; + bottom: 12rem; + } + + .\32xl\:inset-x-48 { + right: 12rem; + left: 12rem; + } + + .\32xl\:inset-y-52 { + top: 13rem; + bottom: 13rem; + } + + .\32xl\:inset-x-52 { + right: 13rem; + left: 13rem; + } + + .\32xl\:inset-y-56 { + top: 14rem; + bottom: 14rem; + } + + .\32xl\:inset-x-56 { + right: 14rem; + left: 14rem; + } + + .\32xl\:inset-y-60 { + top: 15rem; + bottom: 15rem; + } + + .\32xl\:inset-x-60 { + right: 15rem; + left: 15rem; + } + + .\32xl\:inset-y-64 { + top: 16rem; + bottom: 16rem; + } + + .\32xl\:inset-x-64 { + right: 16rem; + left: 16rem; + } + + .\32xl\:inset-y-72 { + top: 18rem; + bottom: 18rem; + } + + .\32xl\:inset-x-72 { + right: 18rem; + left: 18rem; + } + + .\32xl\:inset-y-80 { + top: 20rem; + bottom: 20rem; + } + + .\32xl\:inset-x-80 { + right: 20rem; + left: 20rem; + } + + .\32xl\:inset-y-96 { + top: 24rem; + bottom: 24rem; + } + + .\32xl\:inset-x-96 { + right: 24rem; + left: 24rem; + } + + .\32xl\:inset-y-auto { + top: auto; + bottom: auto; + } + + .\32xl\:inset-x-auto { + right: auto; + left: auto; + } + + .\32xl\:inset-y-px { + top: 1px; + bottom: 1px; + } + + .\32xl\:inset-x-px { + right: 1px; + left: 1px; + } + + .\32xl\:inset-y-0\.5 { + top: 0.125rem; + bottom: 0.125rem; + } + + .\32xl\:inset-x-0\.5 { + right: 0.125rem; + left: 0.125rem; + } + + .\32xl\:inset-y-1\.5 { + top: 0.375rem; + bottom: 0.375rem; + } + + .\32xl\:inset-x-1\.5 { + right: 0.375rem; + left: 0.375rem; + } + + .\32xl\:inset-y-2\.5 { + top: 0.625rem; + bottom: 0.625rem; + } + + .\32xl\:inset-x-2\.5 { + right: 0.625rem; + left: 0.625rem; + } + + .\32xl\:inset-y-3\.5 { + top: 0.875rem; + bottom: 0.875rem; + } + + .\32xl\:inset-x-3\.5 { + right: 0.875rem; + left: 0.875rem; + } + + .\32xl\:-inset-y-0 { + top: 0px; + bottom: 0px; + } + + .\32xl\:-inset-x-0 { + right: 0px; + left: 0px; + } + + .\32xl\:-inset-y-1 { + top: -0.25rem; + bottom: -0.25rem; + } + + .\32xl\:-inset-x-1 { + right: -0.25rem; + left: -0.25rem; + } + + .\32xl\:-inset-y-2 { + top: -0.5rem; + bottom: -0.5rem; + } + + .\32xl\:-inset-x-2 { + right: -0.5rem; + left: -0.5rem; + } + + .\32xl\:-inset-y-3 { + top: -0.75rem; + bottom: -0.75rem; + } + + .\32xl\:-inset-x-3 { + right: -0.75rem; + left: -0.75rem; + } + + .\32xl\:-inset-y-4 { + top: -1rem; + bottom: -1rem; + } + + .\32xl\:-inset-x-4 { + right: -1rem; + left: -1rem; + } + + .\32xl\:-inset-y-5 { + top: -1.25rem; + bottom: -1.25rem; + } + + .\32xl\:-inset-x-5 { + right: -1.25rem; + left: -1.25rem; + } + + .\32xl\:-inset-y-6 { + top: -1.5rem; + bottom: -1.5rem; + } + + .\32xl\:-inset-x-6 { + right: -1.5rem; + left: -1.5rem; + } + + .\32xl\:-inset-y-7 { + top: -1.75rem; + bottom: -1.75rem; + } + + .\32xl\:-inset-x-7 { + right: -1.75rem; + left: -1.75rem; + } + + .\32xl\:-inset-y-8 { + top: -2rem; + bottom: -2rem; + } + + .\32xl\:-inset-x-8 { + right: -2rem; + left: -2rem; + } + + .\32xl\:-inset-y-9 { + top: -2.25rem; + bottom: -2.25rem; + } + + .\32xl\:-inset-x-9 { + right: -2.25rem; + left: -2.25rem; + } + + .\32xl\:-inset-y-10 { + top: -2.5rem; + bottom: -2.5rem; + } + + .\32xl\:-inset-x-10 { + right: -2.5rem; + left: -2.5rem; + } + + .\32xl\:-inset-y-11 { + top: -2.75rem; + bottom: -2.75rem; + } + + .\32xl\:-inset-x-11 { + right: -2.75rem; + left: -2.75rem; + } + + .\32xl\:-inset-y-12 { + top: -3rem; + bottom: -3rem; + } + + .\32xl\:-inset-x-12 { + right: -3rem; + left: -3rem; + } + + .\32xl\:-inset-y-14 { + top: -3.5rem; + bottom: -3.5rem; + } + + .\32xl\:-inset-x-14 { + right: -3.5rem; + left: -3.5rem; + } + + .\32xl\:-inset-y-16 { + top: -4rem; + bottom: -4rem; + } + + .\32xl\:-inset-x-16 { + right: -4rem; + left: -4rem; + } + + .\32xl\:-inset-y-20 { + top: -5rem; + bottom: -5rem; + } + + .\32xl\:-inset-x-20 { + right: -5rem; + left: -5rem; + } + + .\32xl\:-inset-y-24 { + top: -6rem; + bottom: -6rem; + } + + .\32xl\:-inset-x-24 { + right: -6rem; + left: -6rem; + } + + .\32xl\:-inset-y-28 { + top: -7rem; + bottom: -7rem; + } + + .\32xl\:-inset-x-28 { + right: -7rem; + left: -7rem; + } + + .\32xl\:-inset-y-32 { + top: -8rem; + bottom: -8rem; + } + + .\32xl\:-inset-x-32 { + right: -8rem; + left: -8rem; + } + + .\32xl\:-inset-y-36 { + top: -9rem; + bottom: -9rem; + } + + .\32xl\:-inset-x-36 { + right: -9rem; + left: -9rem; + } + + .\32xl\:-inset-y-40 { + top: -10rem; + bottom: -10rem; + } + + .\32xl\:-inset-x-40 { + right: -10rem; + left: -10rem; + } + + .\32xl\:-inset-y-44 { + top: -11rem; + bottom: -11rem; + } + + .\32xl\:-inset-x-44 { + right: -11rem; + left: -11rem; + } + + .\32xl\:-inset-y-48 { + top: -12rem; + bottom: -12rem; + } + + .\32xl\:-inset-x-48 { + right: -12rem; + left: -12rem; + } + + .\32xl\:-inset-y-52 { + top: -13rem; + bottom: -13rem; + } + + .\32xl\:-inset-x-52 { + right: -13rem; + left: -13rem; + } + + .\32xl\:-inset-y-56 { + top: -14rem; + bottom: -14rem; + } + + .\32xl\:-inset-x-56 { + right: -14rem; + left: -14rem; + } + + .\32xl\:-inset-y-60 { + top: -15rem; + bottom: -15rem; + } + + .\32xl\:-inset-x-60 { + right: -15rem; + left: -15rem; + } + + .\32xl\:-inset-y-64 { + top: -16rem; + bottom: -16rem; + } + + .\32xl\:-inset-x-64 { + right: -16rem; + left: -16rem; + } + + .\32xl\:-inset-y-72 { + top: -18rem; + bottom: -18rem; + } + + .\32xl\:-inset-x-72 { + right: -18rem; + left: -18rem; + } + + .\32xl\:-inset-y-80 { + top: -20rem; + bottom: -20rem; + } + + .\32xl\:-inset-x-80 { + right: -20rem; + left: -20rem; + } + + .\32xl\:-inset-y-96 { + top: -24rem; + bottom: -24rem; + } + + .\32xl\:-inset-x-96 { + right: -24rem; + left: -24rem; + } + + .\32xl\:-inset-y-px { + top: -1px; + bottom: -1px; + } + + .\32xl\:-inset-x-px { + right: -1px; + left: -1px; + } + + .\32xl\:-inset-y-0\.5 { + top: -0.125rem; + bottom: -0.125rem; + } + + .\32xl\:-inset-x-0\.5 { + right: -0.125rem; + left: -0.125rem; + } + + .\32xl\:-inset-y-1\.5 { + top: -0.375rem; + bottom: -0.375rem; + } + + .\32xl\:-inset-x-1\.5 { + right: -0.375rem; + left: -0.375rem; + } + + .\32xl\:-inset-y-2\.5 { + top: -0.625rem; + bottom: -0.625rem; + } + + .\32xl\:-inset-x-2\.5 { + right: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-y-3\.5 { + top: -0.875rem; + bottom: -0.875rem; + } + + .\32xl\:-inset-x-3\.5 { + right: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-y-1\/2 { + top: 50%; + bottom: 50%; + } + + .\32xl\:inset-x-1\/2 { + right: 50%; + left: 50%; + } + + .\32xl\:inset-y-1\/3 { + top: 33.333333%; + bottom: 33.333333%; + } + + .\32xl\:inset-x-1\/3 { + right: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-y-2\/3 { + top: 66.666667%; + bottom: 66.666667%; + } + + .\32xl\:inset-x-2\/3 { + right: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-y-1\/4 { + top: 25%; + bottom: 25%; + } + + .\32xl\:inset-x-1\/4 { + right: 25%; + left: 25%; + } + + .\32xl\:inset-y-2\/4 { + top: 50%; + bottom: 50%; + } + + .\32xl\:inset-x-2\/4 { + right: 50%; + left: 50%; + } + + .\32xl\:inset-y-3\/4 { + top: 75%; + bottom: 75%; + } + + .\32xl\:inset-x-3\/4 { + right: 75%; + left: 75%; + } + + .\32xl\:inset-y-full { + top: 100%; + bottom: 100%; + } + + .\32xl\:inset-x-full { + right: 100%; + left: 100%; + } + + .\32xl\:-inset-y-1\/2 { + top: -50%; + bottom: -50%; + } + + .\32xl\:-inset-x-1\/2 { + right: -50%; + left: -50%; + } + + .\32xl\:-inset-y-1\/3 { + top: -33.333333%; + bottom: -33.333333%; + } + + .\32xl\:-inset-x-1\/3 { + right: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-y-2\/3 { + top: -66.666667%; + bottom: -66.666667%; + } + + .\32xl\:-inset-x-2\/3 { + right: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-y-1\/4 { + top: -25%; + bottom: -25%; + } + + .\32xl\:-inset-x-1\/4 { + right: -25%; + left: -25%; + } + + .\32xl\:-inset-y-2\/4 { + top: -50%; + bottom: -50%; + } + + .\32xl\:-inset-x-2\/4 { + right: -50%; + left: -50%; + } + + .\32xl\:-inset-y-3\/4 { + top: -75%; + bottom: -75%; + } + + .\32xl\:-inset-x-3\/4 { + right: -75%; + left: -75%; + } + + .\32xl\:-inset-y-full { + top: -100%; + bottom: -100%; + } + + .\32xl\:-inset-x-full { + right: -100%; + left: -100%; + } + + .\32xl\:top-0 { + top: 0px; + } + + .\32xl\:right-0 { + right: 0px; + } + + .\32xl\:bottom-0 { + bottom: 0px; + } + + .\32xl\:left-0 { + left: 0px; + } + + .\32xl\:top-1 { + top: 0.25rem; + } + + .\32xl\:right-1 { + right: 0.25rem; + } + + .\32xl\:bottom-1 { + bottom: 0.25rem; + } + + .\32xl\:left-1 { + left: 0.25rem; + } + + .\32xl\:top-2 { + top: 0.5rem; + } + + .\32xl\:right-2 { + right: 0.5rem; + } + + .\32xl\:bottom-2 { + bottom: 0.5rem; + } + + .\32xl\:left-2 { + left: 0.5rem; + } + + .\32xl\:top-3 { + top: 0.75rem; + } + + .\32xl\:right-3 { + right: 0.75rem; + } + + .\32xl\:bottom-3 { + bottom: 0.75rem; + } + + .\32xl\:left-3 { + left: 0.75rem; + } + + .\32xl\:top-4 { + top: 1rem; + } + + .\32xl\:right-4 { + right: 1rem; + } + + .\32xl\:bottom-4 { + bottom: 1rem; + } + + .\32xl\:left-4 { + left: 1rem; + } + + .\32xl\:top-5 { + top: 1.25rem; + } + + .\32xl\:right-5 { + right: 1.25rem; + } + + .\32xl\:bottom-5 { + bottom: 1.25rem; + } + + .\32xl\:left-5 { + left: 1.25rem; + } + + .\32xl\:top-6 { + top: 1.5rem; + } + + .\32xl\:right-6 { + right: 1.5rem; + } + + .\32xl\:bottom-6 { + bottom: 1.5rem; + } + + .\32xl\:left-6 { + left: 1.5rem; + } + + .\32xl\:top-7 { + top: 1.75rem; + } + + .\32xl\:right-7 { + right: 1.75rem; + } + + .\32xl\:bottom-7 { + bottom: 1.75rem; + } + + .\32xl\:left-7 { + left: 1.75rem; + } + + .\32xl\:top-8 { + top: 2rem; + } + + .\32xl\:right-8 { + right: 2rem; + } + + .\32xl\:bottom-8 { + bottom: 2rem; + } + + .\32xl\:left-8 { + left: 2rem; + } + + .\32xl\:top-9 { + top: 2.25rem; + } + + .\32xl\:right-9 { + right: 2.25rem; + } + + .\32xl\:bottom-9 { + bottom: 2.25rem; + } + + .\32xl\:left-9 { + left: 2.25rem; + } + + .\32xl\:top-10 { + top: 2.5rem; + } + + .\32xl\:right-10 { + right: 2.5rem; + } + + .\32xl\:bottom-10 { + bottom: 2.5rem; + } + + .\32xl\:left-10 { + left: 2.5rem; + } + + .\32xl\:top-11 { + top: 2.75rem; + } + + .\32xl\:right-11 { + right: 2.75rem; + } + + .\32xl\:bottom-11 { + bottom: 2.75rem; + } + + .\32xl\:left-11 { + left: 2.75rem; + } + + .\32xl\:top-12 { + top: 3rem; + } + + .\32xl\:right-12 { + right: 3rem; + } + + .\32xl\:bottom-12 { + bottom: 3rem; + } + + .\32xl\:left-12 { + left: 3rem; + } + + .\32xl\:top-14 { + top: 3.5rem; + } + + .\32xl\:right-14 { + right: 3.5rem; + } + + .\32xl\:bottom-14 { + bottom: 3.5rem; + } + + .\32xl\:left-14 { + left: 3.5rem; + } + + .\32xl\:top-16 { + top: 4rem; + } + + .\32xl\:right-16 { + right: 4rem; + } + + .\32xl\:bottom-16 { + bottom: 4rem; + } + + .\32xl\:left-16 { + left: 4rem; + } + + .\32xl\:top-20 { + top: 5rem; + } + + .\32xl\:right-20 { + right: 5rem; + } + + .\32xl\:bottom-20 { + bottom: 5rem; + } + + .\32xl\:left-20 { + left: 5rem; + } + + .\32xl\:top-24 { + top: 6rem; + } + + .\32xl\:right-24 { + right: 6rem; + } + + .\32xl\:bottom-24 { + bottom: 6rem; + } + + .\32xl\:left-24 { + left: 6rem; + } + + .\32xl\:top-28 { + top: 7rem; + } + + .\32xl\:right-28 { + right: 7rem; + } + + .\32xl\:bottom-28 { + bottom: 7rem; + } + + .\32xl\:left-28 { + left: 7rem; + } + + .\32xl\:top-32 { + top: 8rem; + } + + .\32xl\:right-32 { + right: 8rem; + } + + .\32xl\:bottom-32 { + bottom: 8rem; + } + + .\32xl\:left-32 { + left: 8rem; + } + + .\32xl\:top-36 { + top: 9rem; + } + + .\32xl\:right-36 { + right: 9rem; + } + + .\32xl\:bottom-36 { + bottom: 9rem; + } + + .\32xl\:left-36 { + left: 9rem; + } + + .\32xl\:top-40 { + top: 10rem; + } + + .\32xl\:right-40 { + right: 10rem; + } + + .\32xl\:bottom-40 { + bottom: 10rem; + } + + .\32xl\:left-40 { + left: 10rem; + } + + .\32xl\:top-44 { + top: 11rem; + } + + .\32xl\:right-44 { + right: 11rem; + } + + .\32xl\:bottom-44 { + bottom: 11rem; + } + + .\32xl\:left-44 { + left: 11rem; + } + + .\32xl\:top-48 { + top: 12rem; + } + + .\32xl\:right-48 { + right: 12rem; + } + + .\32xl\:bottom-48 { + bottom: 12rem; + } + + .\32xl\:left-48 { + left: 12rem; + } + + .\32xl\:top-52 { + top: 13rem; + } + + .\32xl\:right-52 { + right: 13rem; + } + + .\32xl\:bottom-52 { + bottom: 13rem; + } + + .\32xl\:left-52 { + left: 13rem; + } + + .\32xl\:top-56 { + top: 14rem; + } + + .\32xl\:right-56 { + right: 14rem; + } + + .\32xl\:bottom-56 { + bottom: 14rem; + } + + .\32xl\:left-56 { + left: 14rem; + } + + .\32xl\:top-60 { + top: 15rem; + } + + .\32xl\:right-60 { + right: 15rem; + } + + .\32xl\:bottom-60 { + bottom: 15rem; + } + + .\32xl\:left-60 { + left: 15rem; + } + + .\32xl\:top-64 { + top: 16rem; + } + + .\32xl\:right-64 { + right: 16rem; + } + + .\32xl\:bottom-64 { + bottom: 16rem; + } + + .\32xl\:left-64 { + left: 16rem; + } + + .\32xl\:top-72 { + top: 18rem; + } + + .\32xl\:right-72 { + right: 18rem; + } + + .\32xl\:bottom-72 { + bottom: 18rem; + } + + .\32xl\:left-72 { + left: 18rem; + } + + .\32xl\:top-80 { + top: 20rem; + } + + .\32xl\:right-80 { + right: 20rem; + } + + .\32xl\:bottom-80 { + bottom: 20rem; + } + + .\32xl\:left-80 { + left: 20rem; + } + + .\32xl\:top-96 { + top: 24rem; + } + + .\32xl\:right-96 { + right: 24rem; + } + + .\32xl\:bottom-96 { + bottom: 24rem; + } + + .\32xl\:left-96 { + left: 24rem; + } + + .\32xl\:top-auto { + top: auto; + } + + .\32xl\:right-auto { + right: auto; + } + + .\32xl\:bottom-auto { + bottom: auto; + } + + .\32xl\:left-auto { + left: auto; + } + + .\32xl\:top-px { + top: 1px; + } + + .\32xl\:right-px { + right: 1px; + } + + .\32xl\:bottom-px { + bottom: 1px; + } + + .\32xl\:left-px { + left: 1px; + } + + .\32xl\:top-0\.5 { + top: 0.125rem; + } + + .\32xl\:right-0\.5 { + right: 0.125rem; + } + + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; + } + + .\32xl\:left-0\.5 { + left: 0.125rem; + } + + .\32xl\:top-1\.5 { + top: 0.375rem; + } + + .\32xl\:right-1\.5 { + right: 0.375rem; + } + + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; + } + + .\32xl\:left-1\.5 { + left: 0.375rem; + } + + .\32xl\:top-2\.5 { + top: 0.625rem; + } + + .\32xl\:right-2\.5 { + right: 0.625rem; + } + + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; + } + + .\32xl\:left-2\.5 { + left: 0.625rem; + } + + .\32xl\:top-3\.5 { + top: 0.875rem; + } + + .\32xl\:right-3\.5 { + right: 0.875rem; + } + + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; + } + + .\32xl\:left-3\.5 { + left: 0.875rem; + } + + .\32xl\:-top-0 { + top: 0px; + } + + .\32xl\:-right-0 { + right: 0px; + } + + .\32xl\:-bottom-0 { + bottom: 0px; + } + + .\32xl\:-left-0 { + left: 0px; + } + + .\32xl\:-top-1 { + top: -0.25rem; + } + + .\32xl\:-right-1 { + right: -0.25rem; + } + + .\32xl\:-bottom-1 { + bottom: -0.25rem; + } + + .\32xl\:-left-1 { + left: -0.25rem; + } + + .\32xl\:-top-2 { + top: -0.5rem; + } + + .\32xl\:-right-2 { + right: -0.5rem; + } + + .\32xl\:-bottom-2 { + bottom: -0.5rem; + } + + .\32xl\:-left-2 { + left: -0.5rem; + } + + .\32xl\:-top-3 { + top: -0.75rem; + } + + .\32xl\:-right-3 { + right: -0.75rem; + } + + .\32xl\:-bottom-3 { + bottom: -0.75rem; + } + + .\32xl\:-left-3 { + left: -0.75rem; + } + + .\32xl\:-top-4 { + top: -1rem; + } + + .\32xl\:-right-4 { + right: -1rem; + } + + .\32xl\:-bottom-4 { + bottom: -1rem; + } + + .\32xl\:-left-4 { + left: -1rem; + } + + .\32xl\:-top-5 { + top: -1.25rem; + } + + .\32xl\:-right-5 { + right: -1.25rem; + } + + .\32xl\:-bottom-5 { + bottom: -1.25rem; + } + + .\32xl\:-left-5 { + left: -1.25rem; + } + + .\32xl\:-top-6 { + top: -1.5rem; + } + + .\32xl\:-right-6 { + right: -1.5rem; + } + + .\32xl\:-bottom-6 { + bottom: -1.5rem; + } + + .\32xl\:-left-6 { + left: -1.5rem; + } + + .\32xl\:-top-7 { + top: -1.75rem; + } + + .\32xl\:-right-7 { + right: -1.75rem; + } + + .\32xl\:-bottom-7 { + bottom: -1.75rem; + } + + .\32xl\:-left-7 { + left: -1.75rem; + } + + .\32xl\:-top-8 { + top: -2rem; + } + + .\32xl\:-right-8 { + right: -2rem; + } + + .\32xl\:-bottom-8 { + bottom: -2rem; + } + + .\32xl\:-left-8 { + left: -2rem; + } + + .\32xl\:-top-9 { + top: -2.25rem; + } + + .\32xl\:-right-9 { + right: -2.25rem; + } + + .\32xl\:-bottom-9 { + bottom: -2.25rem; + } + + .\32xl\:-left-9 { + left: -2.25rem; + } + + .\32xl\:-top-10 { + top: -2.5rem; + } + + .\32xl\:-right-10 { + right: -2.5rem; + } + + .\32xl\:-bottom-10 { + bottom: -2.5rem; + } + + .\32xl\:-left-10 { + left: -2.5rem; + } + + .\32xl\:-top-11 { + top: -2.75rem; + } + + .\32xl\:-right-11 { + right: -2.75rem; + } + + .\32xl\:-bottom-11 { + bottom: -2.75rem; + } + + .\32xl\:-left-11 { + left: -2.75rem; + } + + .\32xl\:-top-12 { + top: -3rem; + } + + .\32xl\:-right-12 { + right: -3rem; + } + + .\32xl\:-bottom-12 { + bottom: -3rem; + } + + .\32xl\:-left-12 { + left: -3rem; + } + + .\32xl\:-top-14 { + top: -3.5rem; + } + + .\32xl\:-right-14 { + right: -3.5rem; + } + + .\32xl\:-bottom-14 { + bottom: -3.5rem; + } + + .\32xl\:-left-14 { + left: -3.5rem; + } + + .\32xl\:-top-16 { + top: -4rem; + } + + .\32xl\:-right-16 { + right: -4rem; + } + + .\32xl\:-bottom-16 { + bottom: -4rem; + } + + .\32xl\:-left-16 { + left: -4rem; + } + + .\32xl\:-top-20 { + top: -5rem; + } + + .\32xl\:-right-20 { + right: -5rem; + } + + .\32xl\:-bottom-20 { + bottom: -5rem; + } + + .\32xl\:-left-20 { + left: -5rem; + } + + .\32xl\:-top-24 { + top: -6rem; + } + + .\32xl\:-right-24 { + right: -6rem; + } + + .\32xl\:-bottom-24 { + bottom: -6rem; + } + + .\32xl\:-left-24 { + left: -6rem; + } + + .\32xl\:-top-28 { + top: -7rem; + } + + .\32xl\:-right-28 { + right: -7rem; + } + + .\32xl\:-bottom-28 { + bottom: -7rem; + } + + .\32xl\:-left-28 { + left: -7rem; + } + + .\32xl\:-top-32 { + top: -8rem; + } + + .\32xl\:-right-32 { + right: -8rem; + } + + .\32xl\:-bottom-32 { + bottom: -8rem; + } + + .\32xl\:-left-32 { + left: -8rem; + } + + .\32xl\:-top-36 { + top: -9rem; + } + + .\32xl\:-right-36 { + right: -9rem; + } + + .\32xl\:-bottom-36 { + bottom: -9rem; + } + + .\32xl\:-left-36 { + left: -9rem; + } + + .\32xl\:-top-40 { + top: -10rem; + } + + .\32xl\:-right-40 { + right: -10rem; + } + + .\32xl\:-bottom-40 { + bottom: -10rem; + } + + .\32xl\:-left-40 { + left: -10rem; + } + + .\32xl\:-top-44 { + top: -11rem; + } + + .\32xl\:-right-44 { + right: -11rem; + } + + .\32xl\:-bottom-44 { + bottom: -11rem; + } + + .\32xl\:-left-44 { + left: -11rem; + } + + .\32xl\:-top-48 { + top: -12rem; + } + + .\32xl\:-right-48 { + right: -12rem; + } + + .\32xl\:-bottom-48 { + bottom: -12rem; + } + + .\32xl\:-left-48 { + left: -12rem; + } + + .\32xl\:-top-52 { + top: -13rem; + } + + .\32xl\:-right-52 { + right: -13rem; + } + + .\32xl\:-bottom-52 { + bottom: -13rem; + } + + .\32xl\:-left-52 { + left: -13rem; + } + + .\32xl\:-top-56 { + top: -14rem; + } + + .\32xl\:-right-56 { + right: -14rem; + } + + .\32xl\:-bottom-56 { + bottom: -14rem; + } + + .\32xl\:-left-56 { + left: -14rem; + } + + .\32xl\:-top-60 { + top: -15rem; + } + + .\32xl\:-right-60 { + right: -15rem; + } + + .\32xl\:-bottom-60 { + bottom: -15rem; + } + + .\32xl\:-left-60 { + left: -15rem; + } + + .\32xl\:-top-64 { + top: -16rem; + } + + .\32xl\:-right-64 { + right: -16rem; + } + + .\32xl\:-bottom-64 { + bottom: -16rem; + } + + .\32xl\:-left-64 { + left: -16rem; + } + + .\32xl\:-top-72 { + top: -18rem; + } + + .\32xl\:-right-72 { + right: -18rem; + } + + .\32xl\:-bottom-72 { + bottom: -18rem; + } + + .\32xl\:-left-72 { + left: -18rem; + } + + .\32xl\:-top-80 { + top: -20rem; + } + + .\32xl\:-right-80 { + right: -20rem; + } + + .\32xl\:-bottom-80 { + bottom: -20rem; + } + + .\32xl\:-left-80 { + left: -20rem; + } + + .\32xl\:-top-96 { + top: -24rem; + } + + .\32xl\:-right-96 { + right: -24rem; + } + + .\32xl\:-bottom-96 { + bottom: -24rem; + } + + .\32xl\:-left-96 { + left: -24rem; + } + + .\32xl\:-top-px { + top: -1px; + } + + .\32xl\:-right-px { + right: -1px; + } + + .\32xl\:-bottom-px { + bottom: -1px; + } + + .\32xl\:-left-px { + left: -1px; + } + + .\32xl\:-top-0\.5 { + top: -0.125rem; + } + + .\32xl\:-right-0\.5 { + right: -0.125rem; + } + + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; + } + + .\32xl\:-left-0\.5 { + left: -0.125rem; + } + + .\32xl\:-top-1\.5 { + top: -0.375rem; + } + + .\32xl\:-right-1\.5 { + right: -0.375rem; + } + + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; + } + + .\32xl\:-left-1\.5 { + left: -0.375rem; + } + + .\32xl\:-top-2\.5 { + top: -0.625rem; + } + + .\32xl\:-right-2\.5 { + right: -0.625rem; + } + + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; + } + + .\32xl\:-left-2\.5 { + left: -0.625rem; + } + + .\32xl\:-top-3\.5 { + top: -0.875rem; + } + + .\32xl\:-right-3\.5 { + right: -0.875rem; + } + + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; + } + + .\32xl\:-left-3\.5 { + left: -0.875rem; + } + + .\32xl\:top-1\/2 { + top: 50%; + } + + .\32xl\:right-1\/2 { + right: 50%; + } + + .\32xl\:bottom-1\/2 { + bottom: 50%; + } + + .\32xl\:left-1\/2 { + left: 50%; + } + + .\32xl\:top-1\/3 { + top: 33.333333%; + } + + .\32xl\:right-1\/3 { + right: 33.333333%; + } + + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; + } + + .\32xl\:left-1\/3 { + left: 33.333333%; + } + + .\32xl\:top-2\/3 { + top: 66.666667%; + } + + .\32xl\:right-2\/3 { + right: 66.666667%; + } + + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; + } + + .\32xl\:left-2\/3 { + left: 66.666667%; + } + + .\32xl\:top-1\/4 { + top: 25%; + } + + .\32xl\:right-1\/4 { + right: 25%; + } + + .\32xl\:bottom-1\/4 { + bottom: 25%; + } + + .\32xl\:left-1\/4 { + left: 25%; + } + + .\32xl\:top-2\/4 { + top: 50%; + } + + .\32xl\:right-2\/4 { + right: 50%; + } + + .\32xl\:bottom-2\/4 { + bottom: 50%; + } + + .\32xl\:left-2\/4 { + left: 50%; + } + + .\32xl\:top-3\/4 { + top: 75%; + } + + .\32xl\:right-3\/4 { + right: 75%; + } + + .\32xl\:bottom-3\/4 { + bottom: 75%; + } + + .\32xl\:left-3\/4 { + left: 75%; + } + + .\32xl\:top-full { + top: 100%; + } + + .\32xl\:right-full { + right: 100%; + } + + .\32xl\:bottom-full { + bottom: 100%; + } + + .\32xl\:left-full { + left: 100%; + } + + .\32xl\:-top-1\/2 { + top: -50%; + } + + .\32xl\:-right-1\/2 { + right: -50%; + } + + .\32xl\:-bottom-1\/2 { + bottom: -50%; + } + + .\32xl\:-left-1\/2 { + left: -50%; + } + + .\32xl\:-top-1\/3 { + top: -33.333333%; + } + + .\32xl\:-right-1\/3 { + right: -33.333333%; + } + + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; + } + + .\32xl\:-left-1\/3 { + left: -33.333333%; + } + + .\32xl\:-top-2\/3 { + top: -66.666667%; + } + + .\32xl\:-right-2\/3 { + right: -66.666667%; + } + + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; + } + + .\32xl\:-left-2\/3 { + left: -66.666667%; + } + + .\32xl\:-top-1\/4 { + top: -25%; + } + + .\32xl\:-right-1\/4 { + right: -25%; + } + + .\32xl\:-bottom-1\/4 { + bottom: -25%; + } + + .\32xl\:-left-1\/4 { + left: -25%; + } + + .\32xl\:-top-2\/4 { + top: -50%; + } + + .\32xl\:-right-2\/4 { + right: -50%; + } + + .\32xl\:-bottom-2\/4 { + bottom: -50%; + } + + .\32xl\:-left-2\/4 { + left: -50%; + } + + .\32xl\:-top-3\/4 { + top: -75%; + } + + .\32xl\:-right-3\/4 { + right: -75%; + } + + .\32xl\:-bottom-3\/4 { + bottom: -75%; + } + + .\32xl\:-left-3\/4 { + left: -75%; + } + + .\32xl\:-top-full { + top: -100%; + } + + .\32xl\:-right-full { + right: -100%; + } + + .\32xl\:-bottom-full { + bottom: -100%; + } + + .\32xl\:-left-full { + left: -100%; + } + + .\32xl\:resize-none { + resize: none; + } + + .\32xl\:resize-y { + resize: vertical; + } + + .\32xl\:resize-x { + resize: horizontal; + } + + .\32xl\:resize { + resize: both; + } + + .\32xl\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-sm { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-md { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-lg { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-xl { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-2xl { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-3xl { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-inner { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .group:hover .\32xl\:group-hover\:shadow-none { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-sm:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow:focus-within { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-md:focus-within { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-lg:focus-within { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-xl:focus-within { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-2xl:focus-within { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-3xl:focus-within { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-inner:focus-within { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus-within\:shadow-none:focus-within { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-sm:hover { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow:hover { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-md:hover { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-lg:hover { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-xl:hover { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-2xl:hover { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-3xl:hover { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-inner:hover { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:hover\:shadow-none:hover { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-sm:focus { + --tw-shadow: 0 1px 2px 0 rgba(105, 81, 255, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow:focus { + --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-md:focus { + --tw-shadow: 0 1px 2px 0 rgba(85, 105, 135, 0.1); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-lg:focus { + --tw-shadow: 0px 1px 3px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-xl:focus { + --tw-shadow: 10px 14px 34px rgba(0, 0, 0, 0.04); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-2xl:focus { + --tw-shadow: 0px 32px 64px -12px rgba(85, 105, 135, 0.08); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-3xl:focus { + --tw-shadow: 0px 24px 48px -12px rgba(42, 51, 66, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-inner:focus { + --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:focus\:shadow-none:focus { + --tw-shadow: 0 0 #0000; + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + } + + .\32xl\:ring-0 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-2 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-4 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-8 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:ring-inset { + --tw-ring-inset: inset; + } + + .\32xl\:focus-within\:ring-0:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-1:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-2:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-4:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-8:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring:focus-within { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + + .\32xl\:focus\:ring-0:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-1:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-2:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-4:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-8:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring:focus { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); + } + + .\32xl\:focus\:ring-inset:focus { + --tw-ring-inset: inset; + } + + .\32xl\:ring-offset-current { + --tw-ring-offset-color: currentColor; + } + + .\32xl\:ring-offset-transparent { + --tw-ring-offset-color: transparent; + } + + .\32xl\:ring-offset-black { + --tw-ring-offset-color: #000; + } + + .\32xl\:ring-offset-white { + --tw-ring-offset-color: #fff; + } + + .\32xl\:ring-offset-darkCoolGray-50 { + --tw-ring-offset-color: #F5F6F7; + } + + .\32xl\:ring-offset-darkCoolGray-100 { + --tw-ring-offset-color: #EBEDEF; + } + + .\32xl\:ring-offset-darkCoolGray-200 { + --tw-ring-offset-color: #CED1D6; + } + + .\32xl\:ring-offset-darkCoolGray-300 { + --tw-ring-offset-color: #B0B5BD; + } + + .\32xl\:ring-offset-darkCoolGray-400 { + --tw-ring-offset-color: #757E8C; + } + + .\32xl\:ring-offset-darkCoolGray-500 { + --tw-ring-offset-color: #3A475B; + } + + .\32xl\:ring-offset-darkCoolGray-600 { + --tw-ring-offset-color: #344052; + } + + .\32xl\:ring-offset-darkCoolGray-700 { + --tw-ring-offset-color: #2C3544; + } + + .\32xl\:ring-offset-darkCoolGray-800 { + --tw-ring-offset-color: #232B37; + } + + .\32xl\:ring-offset-darkCoolGray-900 { + --tw-ring-offset-color: #1C232D; + } + + .\32xl\:ring-offset-coolGray-50 { + --tw-ring-offset-color: #F7F8F9; + } + + .\32xl\:ring-offset-coolGray-100 { + --tw-ring-offset-color: #EEF0F3; + } + + .\32xl\:ring-offset-coolGray-200 { + --tw-ring-offset-color: #D5DAE1; + } + + .\32xl\:ring-offset-coolGray-300 { + --tw-ring-offset-color: #BBC3CF; + } + + .\32xl\:ring-offset-coolGray-400 { + --tw-ring-offset-color: #8896AB; + } + + .\32xl\:ring-offset-coolGray-500 { + --tw-ring-offset-color: #556987; + } + + .\32xl\:ring-offset-coolGray-600 { + --tw-ring-offset-color: #4D5F7A; + } + + .\32xl\:ring-offset-coolGray-700 { + --tw-ring-offset-color: #404F65; + } + + .\32xl\:ring-offset-coolGray-800 { + --tw-ring-offset-color: #333F51; + } + + .\32xl\:ring-offset-coolGray-900 { + --tw-ring-offset-color: #2A3342; + } + + .\32xl\:ring-offset-indigo-50 { + --tw-ring-offset-color: #F8F6FF; + } + + .\32xl\:ring-offset-indigo-100 { + --tw-ring-offset-color: #F0EEFF; + } + + .\32xl\:ring-offset-indigo-200 { + --tw-ring-offset-color: #DAD4FF; + } + + .\32xl\:ring-offset-indigo-300 { + --tw-ring-offset-color: #C3B9FF; + } + + .\32xl\:ring-offset-indigo-400 { + --tw-ring-offset-color: #9685FF; + } + + .\32xl\:ring-offset-indigo-500 { + --tw-ring-offset-color: #6951FF; + } + + .\32xl\:ring-offset-indigo-600 { + --tw-ring-offset-color: #5F49E6; + } + + .\32xl\:ring-offset-indigo-700 { + --tw-ring-offset-color: #4F3DBF; + } + + .\32xl\:ring-offset-indigo-800 { + --tw-ring-offset-color: #3F3199; + } + + .\32xl\:ring-offset-indigo-900 { + --tw-ring-offset-color: #33287D; + } + + .\32xl\:ring-offset-violet-50 { + --tw-ring-offset-color: #FBF7FF; + } + + .\32xl\:ring-offset-violet-100 { + --tw-ring-offset-color: #F6EEFE; + } + + .\32xl\:ring-offset-violet-200 { + --tw-ring-offset-color: #E9D5FD; + } + + .\32xl\:ring-offset-violet-300 { + --tw-ring-offset-color: #DCBBFC; + } + + .\32xl\:ring-offset-violet-400 { + --tw-ring-offset-color: #C288F9; + } + + .\32xl\:ring-offset-violet-500 { + --tw-ring-offset-color: #A855F7; + } + + .\32xl\:ring-offset-violet-600 { + --tw-ring-offset-color: #974DDE; + } + + .\32xl\:ring-offset-violet-700 { + --tw-ring-offset-color: #7E40B9; + } + + .\32xl\:ring-offset-violet-800 { + --tw-ring-offset-color: #653394; + } + + .\32xl\:ring-offset-violet-900 { + --tw-ring-offset-color: #522A79; + } + + .\32xl\:ring-offset-yellow-50 { + --tw-ring-offset-color: #FFFAF3; + } + + .\32xl\:ring-offset-yellow-100 { + --tw-ring-offset-color: #FEF5E7; + } + + .\32xl\:ring-offset-yellow-200 { + --tw-ring-offset-color: #FDE7C2; + } + + .\32xl\:ring-offset-yellow-300 { + --tw-ring-offset-color: #FBD89D; + } + + .\32xl\:ring-offset-yellow-400 { + --tw-ring-offset-color: #F8BB54; + } + + .\32xl\:ring-offset-yellow-500 { + --tw-ring-offset-color: #F59E0B; + } + + .\32xl\:ring-offset-yellow-600 { + --tw-ring-offset-color: #DD8E0A; + } + + .\32xl\:ring-offset-yellow-700 { + --tw-ring-offset-color: #B87708; + } + + .\32xl\:ring-offset-yellow-800 { + --tw-ring-offset-color: #935F07; + } + + .\32xl\:ring-offset-yellow-900 { + --tw-ring-offset-color: #784D05; + } + + .\32xl\:ring-offset-red-50 { + --tw-ring-offset-color: #FEF7F6; + } + + .\32xl\:ring-offset-red-100 { + --tw-ring-offset-color: #FDEEEC; + } + + .\32xl\:ring-offset-red-200 { + --tw-ring-offset-color: #FBD6D0; + } + + .\32xl\:ring-offset-red-300 { + --tw-ring-offset-color: #F9BDB4; + } + + .\32xl\:ring-offset-red-400 { + --tw-ring-offset-color: #F48B7C; + } + + .\32xl\:ring-offset-red-500 { + --tw-ring-offset-color: #EF5844; + } + + .\32xl\:ring-offset-red-600 { + --tw-ring-offset-color: #D7503D; + } + + .\32xl\:ring-offset-red-700 { + --tw-ring-offset-color: #B34333; + } + + .\32xl\:ring-offset-red-800 { + --tw-ring-offset-color: #8F3529; + } + + .\32xl\:ring-offset-red-900 { + --tw-ring-offset-color: #752C21; + } + + .\32xl\:ring-offset-green-50 { + --tw-ring-offset-color: #F4FDF7; + } + + .\32xl\:ring-offset-green-100 { + --tw-ring-offset-color: #EAFAF0; + } + + .\32xl\:ring-offset-green-200 { + --tw-ring-offset-color: #CAF4D9; + } + + .\32xl\:ring-offset-green-300 { + --tw-ring-offset-color: #AAEDC3; + } + + .\32xl\:ring-offset-green-400 { + --tw-ring-offset-color: #6ADF95; + } + + .\32xl\:ring-offset-green-500 { + --tw-ring-offset-color: #2AD167; + } + + .\32xl\:ring-offset-green-600 { + --tw-ring-offset-color: #26BC5E; + } + + .\32xl\:ring-offset-green-700 { + --tw-ring-offset-color: #209D4E; + } + + .\32xl\:ring-offset-green-800 { + --tw-ring-offset-color: #197D3E; + } + + .\32xl\:ring-offset-green-900 { + --tw-ring-offset-color: #156633; + } + + .\32xl\:ring-offset-blue-50 { + --tw-ring-offset-color: #F5F9FF; + } + + .\32xl\:ring-offset-blue-100 { + --tw-ring-offset-color: #EBF3FE; + } + + .\32xl\:ring-offset-blue-200 { + --tw-ring-offset-color: #CEE0FD; + } + + .\32xl\:ring-offset-blue-300 { + --tw-ring-offset-color: #B1CDFB; + } + + .\32xl\:ring-offset-blue-400 { + --tw-ring-offset-color: #76A8F9; + } + + .\32xl\:ring-offset-blue-500 { + --tw-ring-offset-color: #3B82F6; + } + + .\32xl\:ring-offset-blue-600 { + --tw-ring-offset-color: #3575DD; + } + + .\32xl\:ring-offset-blue-700 { + --tw-ring-offset-color: #2C62B9; + } + + .\32xl\:ring-offset-blue-800 { + --tw-ring-offset-color: #234E94; + } + + .\32xl\:ring-offset-blue-900 { + --tw-ring-offset-color: #1D4079; + } + + .\32xl\:ring-offset-gray-50 { + --tw-ring-offset-color: #f9fafb; + } + + .\32xl\:ring-offset-gray-100 { + --tw-ring-offset-color: #f3f4f6; + } + + .\32xl\:ring-offset-gray-200 { + --tw-ring-offset-color: #e5e7eb; + } + + .\32xl\:ring-offset-gray-300 { + --tw-ring-offset-color: #d1d5db; + } + + .\32xl\:ring-offset-gray-400 { + --tw-ring-offset-color: #9ca3af; + } + + .\32xl\:ring-offset-gray-500 { + --tw-ring-offset-color: #6b7280; + } + + .\32xl\:ring-offset-gray-600 { + --tw-ring-offset-color: #4b5563; + } + + .\32xl\:ring-offset-gray-700 { + --tw-ring-offset-color: #374151; + } + + .\32xl\:ring-offset-gray-800 { + --tw-ring-offset-color: #1f2937; + } + + .\32xl\:ring-offset-gray-900 { + --tw-ring-offset-color: #111827; + } + + .\32xl\:focus-within\:ring-offset-current:focus-within { + --tw-ring-offset-color: currentColor; + } + + .\32xl\:focus-within\:ring-offset-transparent:focus-within { + --tw-ring-offset-color: transparent; + } + + .\32xl\:focus-within\:ring-offset-black:focus-within { + --tw-ring-offset-color: #000; + } + + .\32xl\:focus-within\:ring-offset-white:focus-within { + --tw-ring-offset-color: #fff; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-50:focus-within { + --tw-ring-offset-color: #F5F6F7; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-100:focus-within { + --tw-ring-offset-color: #EBEDEF; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-200:focus-within { + --tw-ring-offset-color: #CED1D6; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-300:focus-within { + --tw-ring-offset-color: #B0B5BD; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-400:focus-within { + --tw-ring-offset-color: #757E8C; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-500:focus-within { + --tw-ring-offset-color: #3A475B; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-600:focus-within { + --tw-ring-offset-color: #344052; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-700:focus-within { + --tw-ring-offset-color: #2C3544; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-800:focus-within { + --tw-ring-offset-color: #232B37; + } + + .\32xl\:focus-within\:ring-offset-darkCoolGray-900:focus-within { + --tw-ring-offset-color: #1C232D; + } + + .\32xl\:focus-within\:ring-offset-coolGray-50:focus-within { + --tw-ring-offset-color: #F7F8F9; + } + + .\32xl\:focus-within\:ring-offset-coolGray-100:focus-within { + --tw-ring-offset-color: #EEF0F3; + } + + .\32xl\:focus-within\:ring-offset-coolGray-200:focus-within { + --tw-ring-offset-color: #D5DAE1; + } + + .\32xl\:focus-within\:ring-offset-coolGray-300:focus-within { + --tw-ring-offset-color: #BBC3CF; + } + + .\32xl\:focus-within\:ring-offset-coolGray-400:focus-within { + --tw-ring-offset-color: #8896AB; + } + + .\32xl\:focus-within\:ring-offset-coolGray-500:focus-within { + --tw-ring-offset-color: #556987; + } + + .\32xl\:focus-within\:ring-offset-coolGray-600:focus-within { + --tw-ring-offset-color: #4D5F7A; + } + + .\32xl\:focus-within\:ring-offset-coolGray-700:focus-within { + --tw-ring-offset-color: #404F65; + } + + .\32xl\:focus-within\:ring-offset-coolGray-800:focus-within { + --tw-ring-offset-color: #333F51; + } + + .\32xl\:focus-within\:ring-offset-coolGray-900:focus-within { + --tw-ring-offset-color: #2A3342; + } + + .\32xl\:focus-within\:ring-offset-indigo-50:focus-within { + --tw-ring-offset-color: #F8F6FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-100:focus-within { + --tw-ring-offset-color: #F0EEFF; + } + + .\32xl\:focus-within\:ring-offset-indigo-200:focus-within { + --tw-ring-offset-color: #DAD4FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-300:focus-within { + --tw-ring-offset-color: #C3B9FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-400:focus-within { + --tw-ring-offset-color: #9685FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-500:focus-within { + --tw-ring-offset-color: #6951FF; + } + + .\32xl\:focus-within\:ring-offset-indigo-600:focus-within { + --tw-ring-offset-color: #5F49E6; + } + + .\32xl\:focus-within\:ring-offset-indigo-700:focus-within { + --tw-ring-offset-color: #4F3DBF; + } + + .\32xl\:focus-within\:ring-offset-indigo-800:focus-within { + --tw-ring-offset-color: #3F3199; + } + + .\32xl\:focus-within\:ring-offset-indigo-900:focus-within { + --tw-ring-offset-color: #33287D; + } + + .\32xl\:focus-within\:ring-offset-violet-50:focus-within { + --tw-ring-offset-color: #FBF7FF; + } + + .\32xl\:focus-within\:ring-offset-violet-100:focus-within { + --tw-ring-offset-color: #F6EEFE; + } + + .\32xl\:focus-within\:ring-offset-violet-200:focus-within { + --tw-ring-offset-color: #E9D5FD; + } + + .\32xl\:focus-within\:ring-offset-violet-300:focus-within { + --tw-ring-offset-color: #DCBBFC; + } + + .\32xl\:focus-within\:ring-offset-violet-400:focus-within { + --tw-ring-offset-color: #C288F9; + } + + .\32xl\:focus-within\:ring-offset-violet-500:focus-within { + --tw-ring-offset-color: #A855F7; + } + + .\32xl\:focus-within\:ring-offset-violet-600:focus-within { + --tw-ring-offset-color: #974DDE; + } + + .\32xl\:focus-within\:ring-offset-violet-700:focus-within { + --tw-ring-offset-color: #7E40B9; + } + + .\32xl\:focus-within\:ring-offset-violet-800:focus-within { + --tw-ring-offset-color: #653394; + } + + .\32xl\:focus-within\:ring-offset-violet-900:focus-within { + --tw-ring-offset-color: #522A79; + } + + .\32xl\:focus-within\:ring-offset-yellow-50:focus-within { + --tw-ring-offset-color: #FFFAF3; + } + + .\32xl\:focus-within\:ring-offset-yellow-100:focus-within { + --tw-ring-offset-color: #FEF5E7; + } + + .\32xl\:focus-within\:ring-offset-yellow-200:focus-within { + --tw-ring-offset-color: #FDE7C2; + } + + .\32xl\:focus-within\:ring-offset-yellow-300:focus-within { + --tw-ring-offset-color: #FBD89D; + } + + .\32xl\:focus-within\:ring-offset-yellow-400:focus-within { + --tw-ring-offset-color: #F8BB54; + } + + .\32xl\:focus-within\:ring-offset-yellow-500:focus-within { + --tw-ring-offset-color: #F59E0B; + } + + .\32xl\:focus-within\:ring-offset-yellow-600:focus-within { + --tw-ring-offset-color: #DD8E0A; + } + + .\32xl\:focus-within\:ring-offset-yellow-700:focus-within { + --tw-ring-offset-color: #B87708; + } + + .\32xl\:focus-within\:ring-offset-yellow-800:focus-within { + --tw-ring-offset-color: #935F07; + } + + .\32xl\:focus-within\:ring-offset-yellow-900:focus-within { + --tw-ring-offset-color: #784D05; + } + + .\32xl\:focus-within\:ring-offset-red-50:focus-within { + --tw-ring-offset-color: #FEF7F6; + } + + .\32xl\:focus-within\:ring-offset-red-100:focus-within { + --tw-ring-offset-color: #FDEEEC; + } + + .\32xl\:focus-within\:ring-offset-red-200:focus-within { + --tw-ring-offset-color: #FBD6D0; + } + + .\32xl\:focus-within\:ring-offset-red-300:focus-within { + --tw-ring-offset-color: #F9BDB4; + } + + .\32xl\:focus-within\:ring-offset-red-400:focus-within { + --tw-ring-offset-color: #F48B7C; + } + + .\32xl\:focus-within\:ring-offset-red-500:focus-within { + --tw-ring-offset-color: #EF5844; + } + + .\32xl\:focus-within\:ring-offset-red-600:focus-within { + --tw-ring-offset-color: #D7503D; + } + + .\32xl\:focus-within\:ring-offset-red-700:focus-within { + --tw-ring-offset-color: #B34333; + } + + .\32xl\:focus-within\:ring-offset-red-800:focus-within { + --tw-ring-offset-color: #8F3529; + } + + .\32xl\:focus-within\:ring-offset-red-900:focus-within { + --tw-ring-offset-color: #752C21; + } + + .\32xl\:focus-within\:ring-offset-green-50:focus-within { + --tw-ring-offset-color: #F4FDF7; + } + + .\32xl\:focus-within\:ring-offset-green-100:focus-within { + --tw-ring-offset-color: #EAFAF0; + } + + .\32xl\:focus-within\:ring-offset-green-200:focus-within { + --tw-ring-offset-color: #CAF4D9; + } + + .\32xl\:focus-within\:ring-offset-green-300:focus-within { + --tw-ring-offset-color: #AAEDC3; + } + + .\32xl\:focus-within\:ring-offset-green-400:focus-within { + --tw-ring-offset-color: #6ADF95; + } + + .\32xl\:focus-within\:ring-offset-green-500:focus-within { + --tw-ring-offset-color: #2AD167; + } + + .\32xl\:focus-within\:ring-offset-green-600:focus-within { + --tw-ring-offset-color: #26BC5E; + } + + .\32xl\:focus-within\:ring-offset-green-700:focus-within { + --tw-ring-offset-color: #209D4E; + } + + .\32xl\:focus-within\:ring-offset-green-800:focus-within { + --tw-ring-offset-color: #197D3E; + } + + .\32xl\:focus-within\:ring-offset-green-900:focus-within { + --tw-ring-offset-color: #156633; + } + + .\32xl\:focus-within\:ring-offset-blue-50:focus-within { + --tw-ring-offset-color: #F5F9FF; + } + + .\32xl\:focus-within\:ring-offset-blue-100:focus-within { + --tw-ring-offset-color: #EBF3FE; + } + + .\32xl\:focus-within\:ring-offset-blue-200:focus-within { + --tw-ring-offset-color: #CEE0FD; + } + + .\32xl\:focus-within\:ring-offset-blue-300:focus-within { + --tw-ring-offset-color: #B1CDFB; + } + + .\32xl\:focus-within\:ring-offset-blue-400:focus-within { + --tw-ring-offset-color: #76A8F9; + } + + .\32xl\:focus-within\:ring-offset-blue-500:focus-within { + --tw-ring-offset-color: #3B82F6; + } + + .\32xl\:focus-within\:ring-offset-blue-600:focus-within { + --tw-ring-offset-color: #3575DD; + } + + .\32xl\:focus-within\:ring-offset-blue-700:focus-within { + --tw-ring-offset-color: #2C62B9; + } + + .\32xl\:focus-within\:ring-offset-blue-800:focus-within { + --tw-ring-offset-color: #234E94; + } + + .\32xl\:focus-within\:ring-offset-blue-900:focus-within { + --tw-ring-offset-color: #1D4079; + } + + .\32xl\:focus-within\:ring-offset-gray-50:focus-within { + --tw-ring-offset-color: #f9fafb; + } + + .\32xl\:focus-within\:ring-offset-gray-100:focus-within { + --tw-ring-offset-color: #f3f4f6; + } + + .\32xl\:focus-within\:ring-offset-gray-200:focus-within { + --tw-ring-offset-color: #e5e7eb; + } + + .\32xl\:focus-within\:ring-offset-gray-300:focus-within { + --tw-ring-offset-color: #d1d5db; + } + + .\32xl\:focus-within\:ring-offset-gray-400:focus-within { + --tw-ring-offset-color: #9ca3af; + } + + .\32xl\:focus-within\:ring-offset-gray-500:focus-within { + --tw-ring-offset-color: #6b7280; + } + + .\32xl\:focus-within\:ring-offset-gray-600:focus-within { + --tw-ring-offset-color: #4b5563; + } + + .\32xl\:focus-within\:ring-offset-gray-700:focus-within { + --tw-ring-offset-color: #374151; + } + + .\32xl\:focus-within\:ring-offset-gray-800:focus-within { + --tw-ring-offset-color: #1f2937; + } + + .\32xl\:focus-within\:ring-offset-gray-900:focus-within { + --tw-ring-offset-color: #111827; + } + + .\32xl\:focus\:ring-offset-current:focus { + --tw-ring-offset-color: currentColor; + } + + .\32xl\:focus\:ring-offset-transparent:focus { + --tw-ring-offset-color: transparent; + } + + .\32xl\:focus\:ring-offset-black:focus { + --tw-ring-offset-color: #000; + } + + .\32xl\:focus\:ring-offset-white:focus { + --tw-ring-offset-color: #fff; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-50:focus { + --tw-ring-offset-color: #F5F6F7; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-100:focus { + --tw-ring-offset-color: #EBEDEF; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-200:focus { + --tw-ring-offset-color: #CED1D6; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-300:focus { + --tw-ring-offset-color: #B0B5BD; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-400:focus { + --tw-ring-offset-color: #757E8C; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-500:focus { + --tw-ring-offset-color: #3A475B; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-600:focus { + --tw-ring-offset-color: #344052; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-700:focus { + --tw-ring-offset-color: #2C3544; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-800:focus { + --tw-ring-offset-color: #232B37; + } + + .\32xl\:focus\:ring-offset-darkCoolGray-900:focus { + --tw-ring-offset-color: #1C232D; + } + + .\32xl\:focus\:ring-offset-coolGray-50:focus { + --tw-ring-offset-color: #F7F8F9; + } + + .\32xl\:focus\:ring-offset-coolGray-100:focus { + --tw-ring-offset-color: #EEF0F3; + } + + .\32xl\:focus\:ring-offset-coolGray-200:focus { + --tw-ring-offset-color: #D5DAE1; + } + + .\32xl\:focus\:ring-offset-coolGray-300:focus { + --tw-ring-offset-color: #BBC3CF; + } + + .\32xl\:focus\:ring-offset-coolGray-400:focus { + --tw-ring-offset-color: #8896AB; + } + + .\32xl\:focus\:ring-offset-coolGray-500:focus { + --tw-ring-offset-color: #556987; + } + + .\32xl\:focus\:ring-offset-coolGray-600:focus { + --tw-ring-offset-color: #4D5F7A; + } + + .\32xl\:focus\:ring-offset-coolGray-700:focus { + --tw-ring-offset-color: #404F65; + } + + .\32xl\:focus\:ring-offset-coolGray-800:focus { + --tw-ring-offset-color: #333F51; + } + + .\32xl\:focus\:ring-offset-coolGray-900:focus { + --tw-ring-offset-color: #2A3342; + } + + .\32xl\:focus\:ring-offset-indigo-50:focus { + --tw-ring-offset-color: #F8F6FF; + } + + .\32xl\:focus\:ring-offset-indigo-100:focus { + --tw-ring-offset-color: #F0EEFF; + } + + .\32xl\:focus\:ring-offset-indigo-200:focus { + --tw-ring-offset-color: #DAD4FF; + } + + .\32xl\:focus\:ring-offset-indigo-300:focus { + --tw-ring-offset-color: #C3B9FF; + } + + .\32xl\:focus\:ring-offset-indigo-400:focus { + --tw-ring-offset-color: #9685FF; + } + + .\32xl\:focus\:ring-offset-indigo-500:focus { + --tw-ring-offset-color: #6951FF; + } + + .\32xl\:focus\:ring-offset-indigo-600:focus { + --tw-ring-offset-color: #5F49E6; + } + + .\32xl\:focus\:ring-offset-indigo-700:focus { + --tw-ring-offset-color: #4F3DBF; + } + + .\32xl\:focus\:ring-offset-indigo-800:focus { + --tw-ring-offset-color: #3F3199; + } + + .\32xl\:focus\:ring-offset-indigo-900:focus { + --tw-ring-offset-color: #33287D; + } + + .\32xl\:focus\:ring-offset-violet-50:focus { + --tw-ring-offset-color: #FBF7FF; + } + + .\32xl\:focus\:ring-offset-violet-100:focus { + --tw-ring-offset-color: #F6EEFE; + } + + .\32xl\:focus\:ring-offset-violet-200:focus { + --tw-ring-offset-color: #E9D5FD; + } + + .\32xl\:focus\:ring-offset-violet-300:focus { + --tw-ring-offset-color: #DCBBFC; + } + + .\32xl\:focus\:ring-offset-violet-400:focus { + --tw-ring-offset-color: #C288F9; + } + + .\32xl\:focus\:ring-offset-violet-500:focus { + --tw-ring-offset-color: #A855F7; + } + + .\32xl\:focus\:ring-offset-violet-600:focus { + --tw-ring-offset-color: #974DDE; + } + + .\32xl\:focus\:ring-offset-violet-700:focus { + --tw-ring-offset-color: #7E40B9; + } + + .\32xl\:focus\:ring-offset-violet-800:focus { + --tw-ring-offset-color: #653394; + } + + .\32xl\:focus\:ring-offset-violet-900:focus { + --tw-ring-offset-color: #522A79; + } + + .\32xl\:focus\:ring-offset-yellow-50:focus { + --tw-ring-offset-color: #FFFAF3; + } + + .\32xl\:focus\:ring-offset-yellow-100:focus { + --tw-ring-offset-color: #FEF5E7; + } + + .\32xl\:focus\:ring-offset-yellow-200:focus { + --tw-ring-offset-color: #FDE7C2; + } + + .\32xl\:focus\:ring-offset-yellow-300:focus { + --tw-ring-offset-color: #FBD89D; + } + + .\32xl\:focus\:ring-offset-yellow-400:focus { + --tw-ring-offset-color: #F8BB54; + } + + .\32xl\:focus\:ring-offset-yellow-500:focus { + --tw-ring-offset-color: #F59E0B; + } + + .\32xl\:focus\:ring-offset-yellow-600:focus { + --tw-ring-offset-color: #DD8E0A; + } + + .\32xl\:focus\:ring-offset-yellow-700:focus { + --tw-ring-offset-color: #B87708; + } + + .\32xl\:focus\:ring-offset-yellow-800:focus { + --tw-ring-offset-color: #935F07; + } + + .\32xl\:focus\:ring-offset-yellow-900:focus { + --tw-ring-offset-color: #784D05; + } + + .\32xl\:focus\:ring-offset-red-50:focus { + --tw-ring-offset-color: #FEF7F6; + } + + .\32xl\:focus\:ring-offset-red-100:focus { + --tw-ring-offset-color: #FDEEEC; + } + + .\32xl\:focus\:ring-offset-red-200:focus { + --tw-ring-offset-color: #FBD6D0; + } + + .\32xl\:focus\:ring-offset-red-300:focus { + --tw-ring-offset-color: #F9BDB4; + } + + .\32xl\:focus\:ring-offset-red-400:focus { + --tw-ring-offset-color: #F48B7C; + } + + .\32xl\:focus\:ring-offset-red-500:focus { + --tw-ring-offset-color: #EF5844; + } + + .\32xl\:focus\:ring-offset-red-600:focus { + --tw-ring-offset-color: #D7503D; + } + + .\32xl\:focus\:ring-offset-red-700:focus { + --tw-ring-offset-color: #B34333; + } + + .\32xl\:focus\:ring-offset-red-800:focus { + --tw-ring-offset-color: #8F3529; + } + + .\32xl\:focus\:ring-offset-red-900:focus { + --tw-ring-offset-color: #752C21; + } + + .\32xl\:focus\:ring-offset-green-50:focus { + --tw-ring-offset-color: #F4FDF7; + } + + .\32xl\:focus\:ring-offset-green-100:focus { + --tw-ring-offset-color: #EAFAF0; + } + + .\32xl\:focus\:ring-offset-green-200:focus { + --tw-ring-offset-color: #CAF4D9; + } + + .\32xl\:focus\:ring-offset-green-300:focus { + --tw-ring-offset-color: #AAEDC3; + } + + .\32xl\:focus\:ring-offset-green-400:focus { + --tw-ring-offset-color: #6ADF95; + } + + .\32xl\:focus\:ring-offset-green-500:focus { + --tw-ring-offset-color: #2AD167; + } + + .\32xl\:focus\:ring-offset-green-600:focus { + --tw-ring-offset-color: #26BC5E; + } + + .\32xl\:focus\:ring-offset-green-700:focus { + --tw-ring-offset-color: #209D4E; + } + + .\32xl\:focus\:ring-offset-green-800:focus { + --tw-ring-offset-color: #197D3E; + } + + .\32xl\:focus\:ring-offset-green-900:focus { + --tw-ring-offset-color: #156633; + } + + .\32xl\:focus\:ring-offset-blue-50:focus { + --tw-ring-offset-color: #F5F9FF; + } + + .\32xl\:focus\:ring-offset-blue-100:focus { + --tw-ring-offset-color: #EBF3FE; + } + + .\32xl\:focus\:ring-offset-blue-200:focus { + --tw-ring-offset-color: #CEE0FD; + } + + .\32xl\:focus\:ring-offset-blue-300:focus { + --tw-ring-offset-color: #B1CDFB; + } + + .\32xl\:focus\:ring-offset-blue-400:focus { + --tw-ring-offset-color: #76A8F9; + } + + .\32xl\:focus\:ring-offset-blue-500:focus { + --tw-ring-offset-color: #3B82F6; + } + + .\32xl\:focus\:ring-offset-blue-600:focus { + --tw-ring-offset-color: #3575DD; + } + + .\32xl\:focus\:ring-offset-blue-700:focus { + --tw-ring-offset-color: #2C62B9; + } + + .\32xl\:focus\:ring-offset-blue-800:focus { + --tw-ring-offset-color: #234E94; + } + + .\32xl\:focus\:ring-offset-blue-900:focus { + --tw-ring-offset-color: #1D4079; + } + + .\32xl\:focus\:ring-offset-gray-50:focus { + --tw-ring-offset-color: #f9fafb; + } + + .\32xl\:focus\:ring-offset-gray-100:focus { + --tw-ring-offset-color: #f3f4f6; + } + + .\32xl\:focus\:ring-offset-gray-200:focus { + --tw-ring-offset-color: #e5e7eb; + } + + .\32xl\:focus\:ring-offset-gray-300:focus { + --tw-ring-offset-color: #d1d5db; + } + + .\32xl\:focus\:ring-offset-gray-400:focus { + --tw-ring-offset-color: #9ca3af; + } + + .\32xl\:focus\:ring-offset-gray-500:focus { + --tw-ring-offset-color: #6b7280; + } + + .\32xl\:focus\:ring-offset-gray-600:focus { + --tw-ring-offset-color: #4b5563; + } + + .\32xl\:focus\:ring-offset-gray-700:focus { + --tw-ring-offset-color: #374151; + } + + .\32xl\:focus\:ring-offset-gray-800:focus { + --tw-ring-offset-color: #1f2937; + } + + .\32xl\:focus\:ring-offset-gray-900:focus { + --tw-ring-offset-color: #111827; + } + + .\32xl\:ring-offset-0 { + --tw-ring-offset-width: 0px; + } + + .\32xl\:ring-offset-1 { + --tw-ring-offset-width: 1px; + } + + .\32xl\:ring-offset-2 { + --tw-ring-offset-width: 2px; + } + + .\32xl\:ring-offset-4 { + --tw-ring-offset-width: 4px; + } + + .\32xl\:ring-offset-8 { + --tw-ring-offset-width: 8px; + } + + .\32xl\:focus-within\:ring-offset-0:focus-within { + --tw-ring-offset-width: 0px; + } + + .\32xl\:focus-within\:ring-offset-1:focus-within { + --tw-ring-offset-width: 1px; + } + + .\32xl\:focus-within\:ring-offset-2:focus-within { + --tw-ring-offset-width: 2px; + } + + .\32xl\:focus-within\:ring-offset-4:focus-within { + --tw-ring-offset-width: 4px; + } + + .\32xl\:focus-within\:ring-offset-8:focus-within { + --tw-ring-offset-width: 8px; + } + + .\32xl\:focus\:ring-offset-0:focus { + --tw-ring-offset-width: 0px; + } + + .\32xl\:focus\:ring-offset-1:focus { + --tw-ring-offset-width: 1px; + } + + .\32xl\:focus\:ring-offset-2:focus { + --tw-ring-offset-width: 2px; + } + + .\32xl\:focus\:ring-offset-4:focus { + --tw-ring-offset-width: 4px; + } + + .\32xl\:focus\:ring-offset-8:focus { + --tw-ring-offset-width: 8px; + } + + .\32xl\:ring-current { + --tw-ring-color: currentColor; + } + + .\32xl\:ring-transparent { + --tw-ring-color: transparent; + } + + .\32xl\:ring-black { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:ring-white { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .\32xl\:ring-darkCoolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .\32xl\:ring-coolGray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .\32xl\:ring-indigo-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .\32xl\:ring-violet-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .\32xl\:ring-yellow-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .\32xl\:ring-red-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .\32xl\:ring-green-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .\32xl\:ring-blue-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-50 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-100 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-200 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-300 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-400 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-500 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-600 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-700 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-800 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .\32xl\:ring-gray-900 { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-current:focus-within { + --tw-ring-color: currentColor; + } + + .\32xl\:focus-within\:ring-transparent:focus-within { + --tw-ring-color: transparent; + } + + .\32xl\:focus-within\:ring-black:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-white:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-darkCoolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-coolGray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-indigo-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-violet-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-yellow-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-red-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-green-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-blue-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-50:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-100:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-200:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-300:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-400:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-500:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-600:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-700:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-800:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus-within\:ring-gray-900:focus-within { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-current:focus { + --tw-ring-color: currentColor; + } + + .\32xl\:focus\:ring-transparent:focus { + --tw-ring-color: transparent; + } + + .\32xl\:focus\:ring-black:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-white:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 246, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 237, 239, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 209, 214, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(176, 181, 189, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 126, 140, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(58, 71, 91, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(52, 64, 82, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 53, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 43, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-darkCoolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(28, 35, 45, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(247, 248, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(238, 240, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(213, 218, 225, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(187, 195, 207, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(136, 150, 171, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(85, 105, 135, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(77, 95, 122, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(64, 79, 101, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 63, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-coolGray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 51, 66, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 246, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(240, 238, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(218, 212, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(195, 185, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(150, 133, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(105, 81, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(95, 73, 230, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(79, 61, 191, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(63, 49, 153, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-indigo-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(51, 40, 125, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 247, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(246, 238, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(233, 213, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(220, 187, 252, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(194, 136, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(168, 85, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(151, 77, 222, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(126, 64, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(101, 51, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-violet-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(82, 42, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(255, 250, 243, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 245, 231, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 231, 194, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 216, 157, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(248, 187, 84, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 158, 11, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(221, 142, 10, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(184, 119, 8, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(147, 95, 7, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-yellow-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(120, 77, 5, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(254, 247, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(253, 238, 236, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(251, 214, 208, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 189, 180, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 139, 124, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(239, 88, 68, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(215, 80, 61, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(179, 67, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(143, 53, 41, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-red-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(117, 44, 33, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(244, 253, 247, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(234, 250, 240, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(202, 244, 217, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(170, 237, 195, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(106, 223, 149, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(42, 209, 103, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(38, 188, 94, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(32, 157, 78, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(25, 125, 62, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-green-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(21, 102, 51, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(245, 249, 255, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(235, 243, 254, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(206, 224, 253, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(177, 205, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(118, 168, 249, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(53, 117, 221, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(44, 98, 185, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(35, 78, 148, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-blue-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(29, 64, 121, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-50:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(249, 250, 251, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-100:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(243, 244, 246, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-200:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-300:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(209, 213, 219, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-400:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-600:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-700:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(55, 65, 81, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-800:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(31, 41, 55, var(--tw-ring-opacity)); + } + + .\32xl\:focus\:ring-gray-900:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgba(17, 24, 39, var(--tw-ring-opacity)); + } + + .\32xl\:ring-opacity-0 { + --tw-ring-opacity: 0; + } + + .\32xl\:ring-opacity-5 { + --tw-ring-opacity: 0.05; + } + + .\32xl\:ring-opacity-10 { + --tw-ring-opacity: 0.1; + } + + .\32xl\:ring-opacity-20 { + --tw-ring-opacity: 0.2; + } + + .\32xl\:ring-opacity-25 { + --tw-ring-opacity: 0.25; + } + + .\32xl\:ring-opacity-30 { + --tw-ring-opacity: 0.3; + } + + .\32xl\:ring-opacity-40 { + --tw-ring-opacity: 0.4; + } + + .\32xl\:ring-opacity-50 { + --tw-ring-opacity: 0.5; + } + + .\32xl\:ring-opacity-60 { + --tw-ring-opacity: 0.6; + } + + .\32xl\:ring-opacity-70 { + --tw-ring-opacity: 0.7; + } + + .\32xl\:ring-opacity-75 { + --tw-ring-opacity: 0.75; + } + + .\32xl\:ring-opacity-80 { + --tw-ring-opacity: 0.8; + } + + .\32xl\:ring-opacity-90 { + --tw-ring-opacity: 0.9; + } + + .\32xl\:ring-opacity-95 { + --tw-ring-opacity: 0.95; + } + + .\32xl\:ring-opacity-100 { + --tw-ring-opacity: 1; + } + + .\32xl\:focus-within\:ring-opacity-0:focus-within { + --tw-ring-opacity: 0; + } + + .\32xl\:focus-within\:ring-opacity-5:focus-within { + --tw-ring-opacity: 0.05; + } + + .\32xl\:focus-within\:ring-opacity-10:focus-within { + --tw-ring-opacity: 0.1; + } + + .\32xl\:focus-within\:ring-opacity-20:focus-within { + --tw-ring-opacity: 0.2; + } + + .\32xl\:focus-within\:ring-opacity-25:focus-within { + --tw-ring-opacity: 0.25; + } + + .\32xl\:focus-within\:ring-opacity-30:focus-within { + --tw-ring-opacity: 0.3; + } + + .\32xl\:focus-within\:ring-opacity-40:focus-within { + --tw-ring-opacity: 0.4; + } + + .\32xl\:focus-within\:ring-opacity-50:focus-within { + --tw-ring-opacity: 0.5; + } + + .\32xl\:focus-within\:ring-opacity-60:focus-within { + --tw-ring-opacity: 0.6; + } + + .\32xl\:focus-within\:ring-opacity-70:focus-within { + --tw-ring-opacity: 0.7; + } + + .\32xl\:focus-within\:ring-opacity-75:focus-within { + --tw-ring-opacity: 0.75; + } + + .\32xl\:focus-within\:ring-opacity-80:focus-within { + --tw-ring-opacity: 0.8; + } + + .\32xl\:focus-within\:ring-opacity-90:focus-within { + --tw-ring-opacity: 0.9; + } + + .\32xl\:focus-within\:ring-opacity-95:focus-within { + --tw-ring-opacity: 0.95; + } + + .\32xl\:focus-within\:ring-opacity-100:focus-within { + --tw-ring-opacity: 1; + } + + .\32xl\:focus\:ring-opacity-0:focus { + --tw-ring-opacity: 0; + } + + .\32xl\:focus\:ring-opacity-5:focus { + --tw-ring-opacity: 0.05; + } + + .\32xl\:focus\:ring-opacity-10:focus { + --tw-ring-opacity: 0.1; + } + + .\32xl\:focus\:ring-opacity-20:focus { + --tw-ring-opacity: 0.2; + } + + .\32xl\:focus\:ring-opacity-25:focus { + --tw-ring-opacity: 0.25; + } + + .\32xl\:focus\:ring-opacity-30:focus { + --tw-ring-opacity: 0.3; + } + + .\32xl\:focus\:ring-opacity-40:focus { + --tw-ring-opacity: 0.4; + } + + .\32xl\:focus\:ring-opacity-50:focus { + --tw-ring-opacity: 0.5; + } + + .\32xl\:focus\:ring-opacity-60:focus { + --tw-ring-opacity: 0.6; + } + + .\32xl\:focus\:ring-opacity-70:focus { + --tw-ring-opacity: 0.7; + } + + .\32xl\:focus\:ring-opacity-75:focus { + --tw-ring-opacity: 0.75; + } + + .\32xl\:focus\:ring-opacity-80:focus { + --tw-ring-opacity: 0.8; + } + + .\32xl\:focus\:ring-opacity-90:focus { + --tw-ring-opacity: 0.9; + } + + .\32xl\:focus\:ring-opacity-95:focus { + --tw-ring-opacity: 0.95; + } + + .\32xl\:focus\:ring-opacity-100:focus { + --tw-ring-opacity: 1; + } + + .\32xl\:fill-current { + fill: currentColor; + } + + .\32xl\:stroke-current { + stroke: currentColor; + } + + .\32xl\:stroke-0 { + stroke-width: 0; + } + + .\32xl\:stroke-1 { + stroke-width: 1; + } + + .\32xl\:stroke-2 { + stroke-width: 2; + } + + .\32xl\:table-auto { + table-layout: auto; + } + + .\32xl\:table-fixed { + table-layout: fixed; + } + + .\32xl\:text-left { + text-align: left; + } + + .\32xl\:text-center { + text-align: center; + } + + .\32xl\:text-right { + text-align: right; + } + + .\32xl\:text-justify { + text-align: justify; + } + + .\32xl\:text-current { + color: currentColor; + } + + .\32xl\:text-transparent { + color: transparent; + } + + .\32xl\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-current { + color: currentColor; + } + + .group:hover .\32xl\:group-hover\:text-transparent { + color: transparent; + } + + .group:hover .\32xl\:group-hover\:text-black { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-white { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-50 { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-100 { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-200 { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-300 { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-400 { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-500 { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-600 { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-700 { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-800 { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-darkCoolGray-900 { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-50 { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-100 { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-200 { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-300 { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-400 { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-500 { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-600 { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-700 { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-800 { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-coolGray-900 { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-50 { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-100 { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-200 { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-300 { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-400 { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-500 { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-600 { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-700 { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-800 { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-indigo-900 { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-50 { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-100 { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-200 { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-300 { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-400 { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-500 { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-600 { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-700 { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-800 { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-violet-900 { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-50 { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-100 { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-200 { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-300 { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-400 { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-500 { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-600 { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-700 { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-800 { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-yellow-900 { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-50 { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-100 { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-200 { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-300 { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-400 { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-500 { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-600 { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-700 { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-800 { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-red-900 { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-50 { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-100 { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-200 { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-300 { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-400 { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-500 { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-600 { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-700 { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-800 { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-green-900 { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-50 { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-100 { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-200 { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-300 { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-400 { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-500 { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-600 { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-700 { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-800 { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-blue-900 { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-50 { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-100 { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-200 { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-300 { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-400 { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-500 { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-600 { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-700 { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-800 { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-gray-900 { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .group:hover .\32xl\:group-hover\:text-body { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-current:focus-within { + color: currentColor; + } + + .\32xl\:focus-within\:text-transparent:focus-within { + color: transparent; + } + + .\32xl\:focus-within\:text-black:focus-within { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-white:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-darkCoolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-coolGray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-50:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-100:focus-within { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-200:focus-within { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-300:focus-within { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-400:focus-within { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-500:focus-within { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-600:focus-within { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-700:focus-within { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-800:focus-within { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-indigo-900:focus-within { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-50:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-100:focus-within { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-200:focus-within { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-300:focus-within { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-400:focus-within { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-500:focus-within { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-600:focus-within { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-700:focus-within { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-800:focus-within { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-violet-900:focus-within { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-50:focus-within { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-100:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-200:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-300:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-400:focus-within { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-500:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-600:focus-within { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-700:focus-within { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-800:focus-within { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-yellow-900:focus-within { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-50:focus-within { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-100:focus-within { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-200:focus-within { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-300:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-400:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-500:focus-within { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-600:focus-within { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-700:focus-within { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-800:focus-within { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-red-900:focus-within { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-50:focus-within { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-100:focus-within { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-200:focus-within { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-300:focus-within { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-400:focus-within { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-500:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-600:focus-within { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-700:focus-within { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-800:focus-within { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-green-900:focus-within { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-50:focus-within { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-100:focus-within { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-200:focus-within { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-300:focus-within { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-400:focus-within { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-500:focus-within { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-600:focus-within { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-700:focus-within { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-800:focus-within { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-blue-900:focus-within { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-50:focus-within { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-100:focus-within { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-200:focus-within { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-300:focus-within { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-400:focus-within { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-500:focus-within { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-600:focus-within { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-700:focus-within { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-800:focus-within { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-gray-900:focus-within { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:focus-within\:text-body:focus-within { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-current:hover { + color: currentColor; + } + + .\32xl\:hover\:text-transparent:hover { + color: transparent; + } + + .\32xl\:hover\:text-black:hover { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-white:hover { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-darkCoolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-50:hover { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-100:hover { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-200:hover { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-300:hover { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-400:hover { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-500:hover { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-600:hover { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-700:hover { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-800:hover { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-coolGray-900:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-50:hover { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-100:hover { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-200:hover { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-300:hover { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-500:hover { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-600:hover { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-700:hover { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-800:hover { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-indigo-900:hover { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-50:hover { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-100:hover { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-200:hover { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-300:hover { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-400:hover { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-500:hover { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-600:hover { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-700:hover { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-800:hover { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-violet-900:hover { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-50:hover { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-100:hover { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-200:hover { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-300:hover { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-400:hover { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-500:hover { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-600:hover { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-700:hover { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-800:hover { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-yellow-900:hover { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-50:hover { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-100:hover { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-200:hover { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-300:hover { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-400:hover { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-500:hover { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-600:hover { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-700:hover { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-800:hover { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-red-900:hover { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-50:hover { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-100:hover { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-200:hover { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-300:hover { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-500:hover { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-600:hover { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-700:hover { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-800:hover { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-green-900:hover { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-50:hover { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-100:hover { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-200:hover { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-300:hover { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-400:hover { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-500:hover { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-600:hover { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-700:hover { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-800:hover { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-blue-900:hover { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-50:hover { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-100:hover { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-200:hover { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-300:hover { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-400:hover { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-500:hover { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-600:hover { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-700:hover { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-800:hover { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-gray-900:hover { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:hover\:text-body:hover { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-current:focus { + color: currentColor; + } + + .\32xl\:focus\:text-transparent:focus { + color: transparent; + } + + .\32xl\:focus\:text-black:focus { + --tw-text-opacity: 1; + color: rgba(0, 0, 0, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-white:focus { + --tw-text-opacity: 1; + color: rgba(255, 255, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 246, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 237, 239, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 209, 214, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(176, 181, 189, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(117, 126, 140, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(58, 71, 91, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(52, 64, 82, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 53, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 43, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-darkCoolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(28, 35, 45, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-50:focus { + --tw-text-opacity: 1; + color: rgba(247, 248, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-100:focus { + --tw-text-opacity: 1; + color: rgba(238, 240, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-200:focus { + --tw-text-opacity: 1; + color: rgba(213, 218, 225, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-300:focus { + --tw-text-opacity: 1; + color: rgba(187, 195, 207, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-400:focus { + --tw-text-opacity: 1; + color: rgba(136, 150, 171, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-500:focus { + --tw-text-opacity: 1; + color: rgba(85, 105, 135, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-600:focus { + --tw-text-opacity: 1; + color: rgba(77, 95, 122, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-700:focus { + --tw-text-opacity: 1; + color: rgba(64, 79, 101, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-800:focus { + --tw-text-opacity: 1; + color: rgba(51, 63, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-coolGray-900:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-50:focus { + --tw-text-opacity: 1; + color: rgba(248, 246, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-100:focus { + --tw-text-opacity: 1; + color: rgba(240, 238, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-200:focus { + --tw-text-opacity: 1; + color: rgba(218, 212, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-300:focus { + --tw-text-opacity: 1; + color: rgba(195, 185, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-400:focus { + --tw-text-opacity: 1; + color: rgba(150, 133, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-500:focus { + --tw-text-opacity: 1; + color: rgba(105, 81, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-600:focus { + --tw-text-opacity: 1; + color: rgba(95, 73, 230, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-700:focus { + --tw-text-opacity: 1; + color: rgba(79, 61, 191, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-800:focus { + --tw-text-opacity: 1; + color: rgba(63, 49, 153, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-indigo-900:focus { + --tw-text-opacity: 1; + color: rgba(51, 40, 125, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-50:focus { + --tw-text-opacity: 1; + color: rgba(251, 247, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-100:focus { + --tw-text-opacity: 1; + color: rgba(246, 238, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-200:focus { + --tw-text-opacity: 1; + color: rgba(233, 213, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-300:focus { + --tw-text-opacity: 1; + color: rgba(220, 187, 252, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-400:focus { + --tw-text-opacity: 1; + color: rgba(194, 136, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-500:focus { + --tw-text-opacity: 1; + color: rgba(168, 85, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-600:focus { + --tw-text-opacity: 1; + color: rgba(151, 77, 222, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-700:focus { + --tw-text-opacity: 1; + color: rgba(126, 64, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-800:focus { + --tw-text-opacity: 1; + color: rgba(101, 51, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-violet-900:focus { + --tw-text-opacity: 1; + color: rgba(82, 42, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-50:focus { + --tw-text-opacity: 1; + color: rgba(255, 250, 243, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-100:focus { + --tw-text-opacity: 1; + color: rgba(254, 245, 231, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-200:focus { + --tw-text-opacity: 1; + color: rgba(253, 231, 194, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-300:focus { + --tw-text-opacity: 1; + color: rgba(251, 216, 157, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-400:focus { + --tw-text-opacity: 1; + color: rgba(248, 187, 84, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-500:focus { + --tw-text-opacity: 1; + color: rgba(245, 158, 11, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-600:focus { + --tw-text-opacity: 1; + color: rgba(221, 142, 10, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-700:focus { + --tw-text-opacity: 1; + color: rgba(184, 119, 8, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-800:focus { + --tw-text-opacity: 1; + color: rgba(147, 95, 7, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-yellow-900:focus { + --tw-text-opacity: 1; + color: rgba(120, 77, 5, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-50:focus { + --tw-text-opacity: 1; + color: rgba(254, 247, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-100:focus { + --tw-text-opacity: 1; + color: rgba(253, 238, 236, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-200:focus { + --tw-text-opacity: 1; + color: rgba(251, 214, 208, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-300:focus { + --tw-text-opacity: 1; + color: rgba(249, 189, 180, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-400:focus { + --tw-text-opacity: 1; + color: rgba(244, 139, 124, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-500:focus { + --tw-text-opacity: 1; + color: rgba(239, 88, 68, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-600:focus { + --tw-text-opacity: 1; + color: rgba(215, 80, 61, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-700:focus { + --tw-text-opacity: 1; + color: rgba(179, 67, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-800:focus { + --tw-text-opacity: 1; + color: rgba(143, 53, 41, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-red-900:focus { + --tw-text-opacity: 1; + color: rgba(117, 44, 33, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-50:focus { + --tw-text-opacity: 1; + color: rgba(244, 253, 247, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-100:focus { + --tw-text-opacity: 1; + color: rgba(234, 250, 240, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-200:focus { + --tw-text-opacity: 1; + color: rgba(202, 244, 217, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-300:focus { + --tw-text-opacity: 1; + color: rgba(170, 237, 195, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-400:focus { + --tw-text-opacity: 1; + color: rgba(106, 223, 149, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-500:focus { + --tw-text-opacity: 1; + color: rgba(42, 209, 103, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-600:focus { + --tw-text-opacity: 1; + color: rgba(38, 188, 94, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-700:focus { + --tw-text-opacity: 1; + color: rgba(32, 157, 78, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-800:focus { + --tw-text-opacity: 1; + color: rgba(25, 125, 62, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-green-900:focus { + --tw-text-opacity: 1; + color: rgba(21, 102, 51, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-50:focus { + --tw-text-opacity: 1; + color: rgba(245, 249, 255, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-100:focus { + --tw-text-opacity: 1; + color: rgba(235, 243, 254, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-200:focus { + --tw-text-opacity: 1; + color: rgba(206, 224, 253, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-300:focus { + --tw-text-opacity: 1; + color: rgba(177, 205, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-400:focus { + --tw-text-opacity: 1; + color: rgba(118, 168, 249, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-500:focus { + --tw-text-opacity: 1; + color: rgba(59, 130, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-600:focus { + --tw-text-opacity: 1; + color: rgba(53, 117, 221, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-700:focus { + --tw-text-opacity: 1; + color: rgba(44, 98, 185, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-800:focus { + --tw-text-opacity: 1; + color: rgba(35, 78, 148, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-blue-900:focus { + --tw-text-opacity: 1; + color: rgba(29, 64, 121, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-50:focus { + --tw-text-opacity: 1; + color: rgba(249, 250, 251, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-100:focus { + --tw-text-opacity: 1; + color: rgba(243, 244, 246, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-200:focus { + --tw-text-opacity: 1; + color: rgba(229, 231, 235, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-300:focus { + --tw-text-opacity: 1; + color: rgba(209, 213, 219, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-400:focus { + --tw-text-opacity: 1; + color: rgba(156, 163, 175, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-500:focus { + --tw-text-opacity: 1; + color: rgba(107, 114, 128, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-600:focus { + --tw-text-opacity: 1; + color: rgba(75, 85, 99, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-700:focus { + --tw-text-opacity: 1; + color: rgba(55, 65, 81, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-800:focus { + --tw-text-opacity: 1; + color: rgba(31, 41, 55, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-gray-900:focus { + --tw-text-opacity: 1; + color: rgba(17, 24, 39, var(--tw-text-opacity)); + } + + .\32xl\:focus\:text-body:focus { + --tw-text-opacity: 1; + color: rgba(42, 51, 66, var(--tw-text-opacity)); + } + + .\32xl\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .\32xl\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .\32xl\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .\32xl\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .\32xl\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .\32xl\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .\32xl\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .\32xl\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .\32xl\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .\32xl\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .\32xl\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .\32xl\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .\32xl\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .\32xl\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .\32xl\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .group:hover .\32xl\:group-hover\:text-opacity-0 { + --tw-text-opacity: 0; + } + + .group:hover .\32xl\:group-hover\:text-opacity-5 { + --tw-text-opacity: 0.05; + } + + .group:hover .\32xl\:group-hover\:text-opacity-10 { + --tw-text-opacity: 0.1; + } + + .group:hover .\32xl\:group-hover\:text-opacity-20 { + --tw-text-opacity: 0.2; + } + + .group:hover .\32xl\:group-hover\:text-opacity-25 { + --tw-text-opacity: 0.25; + } + + .group:hover .\32xl\:group-hover\:text-opacity-30 { + --tw-text-opacity: 0.3; + } + + .group:hover .\32xl\:group-hover\:text-opacity-40 { + --tw-text-opacity: 0.4; + } + + .group:hover .\32xl\:group-hover\:text-opacity-50 { + --tw-text-opacity: 0.5; + } + + .group:hover .\32xl\:group-hover\:text-opacity-60 { + --tw-text-opacity: 0.6; + } + + .group:hover .\32xl\:group-hover\:text-opacity-70 { + --tw-text-opacity: 0.7; + } + + .group:hover .\32xl\:group-hover\:text-opacity-75 { + --tw-text-opacity: 0.75; + } + + .group:hover .\32xl\:group-hover\:text-opacity-80 { + --tw-text-opacity: 0.8; + } + + .group:hover .\32xl\:group-hover\:text-opacity-90 { + --tw-text-opacity: 0.9; + } + + .group:hover .\32xl\:group-hover\:text-opacity-95 { + --tw-text-opacity: 0.95; + } + + .group:hover .\32xl\:group-hover\:text-opacity-100 { + --tw-text-opacity: 1; + } + + .\32xl\:focus-within\:text-opacity-0:focus-within { + --tw-text-opacity: 0; + } + + .\32xl\:focus-within\:text-opacity-5:focus-within { + --tw-text-opacity: 0.05; + } + + .\32xl\:focus-within\:text-opacity-10:focus-within { + --tw-text-opacity: 0.1; + } + + .\32xl\:focus-within\:text-opacity-20:focus-within { + --tw-text-opacity: 0.2; + } + + .\32xl\:focus-within\:text-opacity-25:focus-within { + --tw-text-opacity: 0.25; + } + + .\32xl\:focus-within\:text-opacity-30:focus-within { + --tw-text-opacity: 0.3; + } + + .\32xl\:focus-within\:text-opacity-40:focus-within { + --tw-text-opacity: 0.4; + } + + .\32xl\:focus-within\:text-opacity-50:focus-within { + --tw-text-opacity: 0.5; + } + + .\32xl\:focus-within\:text-opacity-60:focus-within { + --tw-text-opacity: 0.6; + } + + .\32xl\:focus-within\:text-opacity-70:focus-within { + --tw-text-opacity: 0.7; + } + + .\32xl\:focus-within\:text-opacity-75:focus-within { + --tw-text-opacity: 0.75; + } + + .\32xl\:focus-within\:text-opacity-80:focus-within { + --tw-text-opacity: 0.8; + } + + .\32xl\:focus-within\:text-opacity-90:focus-within { + --tw-text-opacity: 0.9; + } + + .\32xl\:focus-within\:text-opacity-95:focus-within { + --tw-text-opacity: 0.95; + } + + .\32xl\:focus-within\:text-opacity-100:focus-within { + --tw-text-opacity: 1; + } + + .\32xl\:hover\:text-opacity-0:hover { + --tw-text-opacity: 0; + } + + .\32xl\:hover\:text-opacity-5:hover { + --tw-text-opacity: 0.05; + } + + .\32xl\:hover\:text-opacity-10:hover { + --tw-text-opacity: 0.1; + } + + .\32xl\:hover\:text-opacity-20:hover { + --tw-text-opacity: 0.2; + } + + .\32xl\:hover\:text-opacity-25:hover { + --tw-text-opacity: 0.25; + } + + .\32xl\:hover\:text-opacity-30:hover { + --tw-text-opacity: 0.3; + } + + .\32xl\:hover\:text-opacity-40:hover { + --tw-text-opacity: 0.4; + } + + .\32xl\:hover\:text-opacity-50:hover { + --tw-text-opacity: 0.5; + } + + .\32xl\:hover\:text-opacity-60:hover { + --tw-text-opacity: 0.6; + } + + .\32xl\:hover\:text-opacity-70:hover { + --tw-text-opacity: 0.7; + } + + .\32xl\:hover\:text-opacity-75:hover { + --tw-text-opacity: 0.75; + } + + .\32xl\:hover\:text-opacity-80:hover { + --tw-text-opacity: 0.8; + } + + .\32xl\:hover\:text-opacity-90:hover { + --tw-text-opacity: 0.9; + } + + .\32xl\:hover\:text-opacity-95:hover { + --tw-text-opacity: 0.95; + } + + .\32xl\:hover\:text-opacity-100:hover { + --tw-text-opacity: 1; + } + + .\32xl\:focus\:text-opacity-0:focus { + --tw-text-opacity: 0; + } + + .\32xl\:focus\:text-opacity-5:focus { + --tw-text-opacity: 0.05; + } + + .\32xl\:focus\:text-opacity-10:focus { + --tw-text-opacity: 0.1; + } + + .\32xl\:focus\:text-opacity-20:focus { + --tw-text-opacity: 0.2; + } + + .\32xl\:focus\:text-opacity-25:focus { + --tw-text-opacity: 0.25; + } + + .\32xl\:focus\:text-opacity-30:focus { + --tw-text-opacity: 0.3; + } + + .\32xl\:focus\:text-opacity-40:focus { + --tw-text-opacity: 0.4; + } + + .\32xl\:focus\:text-opacity-50:focus { + --tw-text-opacity: 0.5; + } + + .\32xl\:focus\:text-opacity-60:focus { + --tw-text-opacity: 0.6; + } + + .\32xl\:focus\:text-opacity-70:focus { + --tw-text-opacity: 0.7; + } + + .\32xl\:focus\:text-opacity-75:focus { + --tw-text-opacity: 0.75; + } + + .\32xl\:focus\:text-opacity-80:focus { + --tw-text-opacity: 0.8; + } + + .\32xl\:focus\:text-opacity-90:focus { + --tw-text-opacity: 0.9; + } + + .\32xl\:focus\:text-opacity-95:focus { + --tw-text-opacity: 0.95; + } + + .\32xl\:focus\:text-opacity-100:focus { + --tw-text-opacity: 1; + } + + .\32xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .\32xl\:overflow-ellipsis { + text-overflow: ellipsis; + } + + .\32xl\:overflow-clip { + text-overflow: clip; + } + + .\32xl\:italic { + font-style: italic; + } + + .\32xl\:not-italic { + font-style: normal; + } + + .\32xl\:uppercase { + text-transform: uppercase; + } + + .\32xl\:lowercase { + text-transform: lowercase; + } + + .\32xl\:capitalize { + text-transform: capitalize; + } + + .\32xl\:normal-case { + text-transform: none; + } + + .\32xl\:underline { + text-decoration: underline; + } + + .\32xl\:line-through { + text-decoration: line-through; + } + + .\32xl\:no-underline { + text-decoration: none; + } + + .group:hover .\32xl\:group-hover\:underline { + text-decoration: underline; + } + + .group:hover .\32xl\:group-hover\:line-through { + text-decoration: line-through; + } + + .group:hover .\32xl\:group-hover\:no-underline { + text-decoration: none; + } + + .\32xl\:focus-within\:underline:focus-within { + text-decoration: underline; + } + + .\32xl\:focus-within\:line-through:focus-within { + text-decoration: line-through; + } + + .\32xl\:focus-within\:no-underline:focus-within { + text-decoration: none; + } + + .\32xl\:hover\:underline:hover { + text-decoration: underline; + } + + .\32xl\:hover\:line-through:hover { + text-decoration: line-through; + } + + .\32xl\:hover\:no-underline:hover { + text-decoration: none; + } + + .\32xl\:focus\:underline:focus { + text-decoration: underline; + } + + .\32xl\:focus\:line-through:focus { + text-decoration: line-through; + } + + .\32xl\:focus\:no-underline:focus { + text-decoration: none; + } + + .\32xl\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .\32xl\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .\32xl\:ordinal, .\32xl\:slashed-zero, .\32xl\:lining-nums, .\32xl\:oldstyle-nums, .\32xl\:proportional-nums, .\32xl\:tabular-nums, .\32xl\:diagonal-fractions, .\32xl\:stacked-fractions { + --tw-ordinal: var(--tw-empty,/*!*/ /*!*/); + --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/); + --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/); + font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction); + } + + .\32xl\:normal-nums { + font-variant-numeric: normal; + } + + .\32xl\:ordinal { + --tw-ordinal: ordinal; + } + + .\32xl\:slashed-zero { + --tw-slashed-zero: slashed-zero; + } + + .\32xl\:lining-nums { + --tw-numeric-figure: lining-nums; + } + + .\32xl\:oldstyle-nums { + --tw-numeric-figure: oldstyle-nums; + } + + .\32xl\:proportional-nums { + --tw-numeric-spacing: proportional-nums; + } + + .\32xl\:tabular-nums { + --tw-numeric-spacing: tabular-nums; + } + + .\32xl\:diagonal-fractions { + --tw-numeric-fraction: diagonal-fractions; + } + + .\32xl\:stacked-fractions { + --tw-numeric-fraction: stacked-fractions; + } + + .\32xl\:tracking-tighter { + letter-spacing: -0.02em; + } + + .\32xl\:tracking-tight { + letter-spacing: -1px; + } + + .\32xl\:tracking-normal { + letter-spacing: 0em; + } + + .\32xl\:tracking-wide { + letter-spacing: 0.03em; + } + + .\32xl\:tracking-wider { + letter-spacing: 0.08em; + } + + .\32xl\:tracking-widest { + letter-spacing: 0.1em; + } + + .\32xl\:select-none { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + + .\32xl\:select-text { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; + } + + .\32xl\:select-all { + -webkit-user-select: all; + -moz-user-select: all; + -ms-user-select: all; + user-select: all; + } + + .\32xl\:select-auto { + -webkit-user-select: auto; + -moz-user-select: auto; + -ms-user-select: auto; + user-select: auto; + } + + .\32xl\:align-baseline { + vertical-align: baseline; + } + + .\32xl\:align-top { + vertical-align: top; + } + + .\32xl\:align-middle { + vertical-align: middle; + } + + .\32xl\:align-bottom { + vertical-align: bottom; + } + + .\32xl\:align-text-top { + vertical-align: text-top; + } + + .\32xl\:align-text-bottom { + vertical-align: text-bottom; + } + + .\32xl\:visible { + visibility: visible; + } + + .\32xl\:invisible { + visibility: hidden; + } + + .\32xl\:whitespace-normal { + white-space: normal; + } + + .\32xl\:whitespace-nowrap { + white-space: nowrap; + } + + .\32xl\:whitespace-pre { + white-space: pre; + } + + .\32xl\:whitespace-pre-line { + white-space: pre-line; + } + + .\32xl\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .\32xl\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .\32xl\:break-words { + overflow-wrap: break-word; + } + + .\32xl\:break-all { + word-break: break-all; + } + + .\32xl\:w-0 { + width: 0px; + } + + .\32xl\:w-1 { + width: 0.25rem; + } + + .\32xl\:w-2 { + width: 0.5rem; + } + + .\32xl\:w-3 { + width: 0.75rem; + } + + .\32xl\:w-4 { + width: 1rem; + } + + .\32xl\:w-5 { + width: 1.25rem; + } + + .\32xl\:w-6 { + width: 1.5rem; + } + + .\32xl\:w-7 { + width: 1.75rem; + } + + .\32xl\:w-8 { + width: 2rem; + } + + .\32xl\:w-9 { + width: 2.25rem; + } + + .\32xl\:w-10 { + width: 2.5rem; + } + + .\32xl\:w-11 { + width: 2.75rem; + } + + .\32xl\:w-12 { + width: 3rem; + } + + .\32xl\:w-14 { + width: 3.5rem; + } + + .\32xl\:w-16 { + width: 4rem; + } + + .\32xl\:w-20 { + width: 5rem; + } + + .\32xl\:w-24 { + width: 6rem; + } + + .\32xl\:w-28 { + width: 7rem; + } + + .\32xl\:w-32 { + width: 8rem; + } + + .\32xl\:w-36 { + width: 9rem; + } + + .\32xl\:w-40 { + width: 10rem; + } + + .\32xl\:w-44 { + width: 11rem; + } + + .\32xl\:w-48 { + width: 12rem; + } + + .\32xl\:w-52 { + width: 13rem; + } + + .\32xl\:w-56 { + width: 14rem; + } + + .\32xl\:w-60 { + width: 15rem; + } + + .\32xl\:w-64 { + width: 16rem; + } + + .\32xl\:w-72 { + width: 18rem; + } + + .\32xl\:w-80 { + width: 20rem; + } + + .\32xl\:w-96 { + width: 24rem; + } + + .\32xl\:w-auto { + width: auto; + } + + .\32xl\:w-px { + width: 1px; + } + + .\32xl\:w-0\.5 { + width: 0.125rem; + } + + .\32xl\:w-1\.5 { + width: 0.375rem; + } + + .\32xl\:w-2\.5 { + width: 0.625rem; + } + + .\32xl\:w-3\.5 { + width: 0.875rem; + } + + .\32xl\:w-1\/2 { + width: 50%; + } + + .\32xl\:w-1\/3 { + width: 33.333333%; + } + + .\32xl\:w-2\/3 { + width: 66.666667%; + } + + .\32xl\:w-1\/4 { + width: 25%; + } + + .\32xl\:w-2\/4 { + width: 50%; + } + + .\32xl\:w-3\/4 { + width: 75%; + } + + .\32xl\:w-1\/5 { + width: 20%; + } + + .\32xl\:w-2\/5 { + width: 40%; + } + + .\32xl\:w-3\/5 { + width: 60%; + } + + .\32xl\:w-4\/5 { + width: 80%; + } + + .\32xl\:w-1\/6 { + width: 16.666667%; + } + + .\32xl\:w-2\/6 { + width: 33.333333%; + } + + .\32xl\:w-3\/6 { + width: 50%; + } + + .\32xl\:w-4\/6 { + width: 66.666667%; + } + + .\32xl\:w-5\/6 { + width: 83.333333%; + } + + .\32xl\:w-1\/12 { + width: 8.333333%; + } + + .\32xl\:w-2\/12 { + width: 16.666667%; + } + + .\32xl\:w-3\/12 { + width: 25%; + } + + .\32xl\:w-4\/12 { + width: 33.333333%; + } + + .\32xl\:w-5\/12 { + width: 41.666667%; + } + + .\32xl\:w-6\/12 { + width: 50%; + } + + .\32xl\:w-7\/12 { + width: 58.333333%; + } + + .\32xl\:w-8\/12 { + width: 66.666667%; + } + + .\32xl\:w-9\/12 { + width: 75%; + } + + .\32xl\:w-10\/12 { + width: 83.333333%; + } + + .\32xl\:w-11\/12 { + width: 91.666667%; + } + + .\32xl\:w-full { + width: 100%; + } + + .\32xl\:w-screen { + width: 100vw; + } + + .\32xl\:z-0 { + z-index: 0; + } + + .\32xl\:z-10 { + z-index: 10; + } + + .\32xl\:z-20 { + z-index: 20; + } + + .\32xl\:z-30 { + z-index: 30; + } + + .\32xl\:z-40 { + z-index: 40; + } + + .\32xl\:z-50 { + z-index: 50; + } + + .\32xl\:z-auto { + z-index: auto; + } + + .\32xl\:focus-within\:z-0:focus-within { + z-index: 0; + } + + .\32xl\:focus-within\:z-10:focus-within { + z-index: 10; + } + + .\32xl\:focus-within\:z-20:focus-within { + z-index: 20; + } + + .\32xl\:focus-within\:z-30:focus-within { + z-index: 30; + } + + .\32xl\:focus-within\:z-40:focus-within { + z-index: 40; + } + + .\32xl\:focus-within\:z-50:focus-within { + z-index: 50; + } + + .\32xl\:focus-within\:z-auto:focus-within { + z-index: auto; + } + + .\32xl\:focus\:z-0:focus { + z-index: 0; + } + + .\32xl\:focus\:z-10:focus { + z-index: 10; + } + + .\32xl\:focus\:z-20:focus { + z-index: 20; + } + + .\32xl\:focus\:z-30:focus { + z-index: 30; + } + + .\32xl\:focus\:z-40:focus { + z-index: 40; + } + + .\32xl\:focus\:z-50:focus { + z-index: 50; + } + + .\32xl\:focus\:z-auto:focus { + z-index: auto; + } + + .\32xl\:gap-0 { + gap: 0px; + } + + .\32xl\:gap-1 { + gap: 0.25rem; + } + + .\32xl\:gap-2 { + gap: 0.5rem; + } + + .\32xl\:gap-3 { + gap: 0.75rem; + } + + .\32xl\:gap-4 { + gap: 1rem; + } + + .\32xl\:gap-5 { + gap: 1.25rem; + } + + .\32xl\:gap-6 { + gap: 1.5rem; + } + + .\32xl\:gap-7 { + gap: 1.75rem; + } + + .\32xl\:gap-8 { + gap: 2rem; + } + + .\32xl\:gap-9 { + gap: 2.25rem; + } + + .\32xl\:gap-10 { + gap: 2.5rem; + } + + .\32xl\:gap-11 { + gap: 2.75rem; + } + + .\32xl\:gap-12 { + gap: 3rem; + } + + .\32xl\:gap-14 { + gap: 3.5rem; + } + + .\32xl\:gap-16 { + gap: 4rem; + } + + .\32xl\:gap-20 { + gap: 5rem; + } + + .\32xl\:gap-24 { + gap: 6rem; + } + + .\32xl\:gap-28 { + gap: 7rem; + } + + .\32xl\:gap-32 { + gap: 8rem; + } + + .\32xl\:gap-36 { + gap: 9rem; + } + + .\32xl\:gap-40 { + gap: 10rem; + } + + .\32xl\:gap-44 { + gap: 11rem; + } + + .\32xl\:gap-48 { + gap: 12rem; + } + + .\32xl\:gap-52 { + gap: 13rem; + } + + .\32xl\:gap-56 { + gap: 14rem; + } + + .\32xl\:gap-60 { + gap: 15rem; + } + + .\32xl\:gap-64 { + gap: 16rem; + } + + .\32xl\:gap-72 { + gap: 18rem; + } + + .\32xl\:gap-80 { + gap: 20rem; + } + + .\32xl\:gap-96 { + gap: 24rem; + } + + .\32xl\:gap-px { + gap: 1px; + } + + .\32xl\:gap-0\.5 { + gap: 0.125rem; + } + + .\32xl\:gap-1\.5 { + gap: 0.375rem; + } + + .\32xl\:gap-2\.5 { + gap: 0.625rem; + } + + .\32xl\:gap-3\.5 { + gap: 0.875rem; + } + + .\32xl\:gap-x-0 { + -moz-column-gap: 0px; + column-gap: 0px; + } + + .\32xl\:gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .\32xl\:gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .\32xl\:gap-x-3 { + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .\32xl\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .\32xl\:gap-x-5 { + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .\32xl\:gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .\32xl\:gap-x-7 { + -moz-column-gap: 1.75rem; + column-gap: 1.75rem; + } + + .\32xl\:gap-x-8 { + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .\32xl\:gap-x-9 { + -moz-column-gap: 2.25rem; + column-gap: 2.25rem; + } + + .\32xl\:gap-x-10 { + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .\32xl\:gap-x-11 { + -moz-column-gap: 2.75rem; + column-gap: 2.75rem; + } + + .\32xl\:gap-x-12 { + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .\32xl\:gap-x-14 { + -moz-column-gap: 3.5rem; + column-gap: 3.5rem; + } + + .\32xl\:gap-x-16 { + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .\32xl\:gap-x-20 { + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .\32xl\:gap-x-24 { + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .\32xl\:gap-x-28 { + -moz-column-gap: 7rem; + column-gap: 7rem; + } + + .\32xl\:gap-x-32 { + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .\32xl\:gap-x-36 { + -moz-column-gap: 9rem; + column-gap: 9rem; + } + + .\32xl\:gap-x-40 { + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .\32xl\:gap-x-44 { + -moz-column-gap: 11rem; + column-gap: 11rem; + } + + .\32xl\:gap-x-48 { + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .\32xl\:gap-x-52 { + -moz-column-gap: 13rem; + column-gap: 13rem; + } + + .\32xl\:gap-x-56 { + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .\32xl\:gap-x-60 { + -moz-column-gap: 15rem; + column-gap: 15rem; + } + + .\32xl\:gap-x-64 { + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .\32xl\:gap-x-72 { + -moz-column-gap: 18rem; + column-gap: 18rem; + } + + .\32xl\:gap-x-80 { + -moz-column-gap: 20rem; + column-gap: 20rem; + } + + .\32xl\:gap-x-96 { + -moz-column-gap: 24rem; + column-gap: 24rem; + } + + .\32xl\:gap-x-px { + -moz-column-gap: 1px; + column-gap: 1px; + } + + .\32xl\:gap-x-0\.5 { + -moz-column-gap: 0.125rem; + column-gap: 0.125rem; + } + + .\32xl\:gap-x-1\.5 { + -moz-column-gap: 0.375rem; + column-gap: 0.375rem; + } + + .\32xl\:gap-x-2\.5 { + -moz-column-gap: 0.625rem; + column-gap: 0.625rem; + } + + .\32xl\:gap-x-3\.5 { + -moz-column-gap: 0.875rem; + column-gap: 0.875rem; + } + + .\32xl\:gap-y-0 { + row-gap: 0px; + } + + .\32xl\:gap-y-1 { + row-gap: 0.25rem; + } + + .\32xl\:gap-y-2 { + row-gap: 0.5rem; + } + + .\32xl\:gap-y-3 { + row-gap: 0.75rem; + } + + .\32xl\:gap-y-4 { + row-gap: 1rem; + } + + .\32xl\:gap-y-5 { + row-gap: 1.25rem; + } + + .\32xl\:gap-y-6 { + row-gap: 1.5rem; + } + + .\32xl\:gap-y-7 { + row-gap: 1.75rem; + } + + .\32xl\:gap-y-8 { + row-gap: 2rem; + } + + .\32xl\:gap-y-9 { + row-gap: 2.25rem; + } + + .\32xl\:gap-y-10 { + row-gap: 2.5rem; + } + + .\32xl\:gap-y-11 { + row-gap: 2.75rem; + } + + .\32xl\:gap-y-12 { + row-gap: 3rem; + } + + .\32xl\:gap-y-14 { + row-gap: 3.5rem; + } + + .\32xl\:gap-y-16 { + row-gap: 4rem; + } + + .\32xl\:gap-y-20 { + row-gap: 5rem; + } + + .\32xl\:gap-y-24 { + row-gap: 6rem; + } + + .\32xl\:gap-y-28 { + row-gap: 7rem; + } + + .\32xl\:gap-y-32 { + row-gap: 8rem; + } + + .\32xl\:gap-y-36 { + row-gap: 9rem; + } + + .\32xl\:gap-y-40 { + row-gap: 10rem; + } + + .\32xl\:gap-y-44 { + row-gap: 11rem; + } + + .\32xl\:gap-y-48 { + row-gap: 12rem; + } + + .\32xl\:gap-y-52 { + row-gap: 13rem; + } + + .\32xl\:gap-y-56 { + row-gap: 14rem; + } + + .\32xl\:gap-y-60 { + row-gap: 15rem; + } + + .\32xl\:gap-y-64 { + row-gap: 16rem; + } + + .\32xl\:gap-y-72 { + row-gap: 18rem; + } + + .\32xl\:gap-y-80 { + row-gap: 20rem; + } + + .\32xl\:gap-y-96 { + row-gap: 24rem; + } + + .\32xl\:gap-y-px { + row-gap: 1px; + } + + .\32xl\:gap-y-0\.5 { + row-gap: 0.125rem; + } + + .\32xl\:gap-y-1\.5 { + row-gap: 0.375rem; + } + + .\32xl\:gap-y-2\.5 { + row-gap: 0.625rem; + } + + .\32xl\:gap-y-3\.5 { + row-gap: 0.875rem; + } + + .\32xl\:grid-flow-row { + grid-auto-flow: row; + } + + .\32xl\:grid-flow-col { + grid-auto-flow: column; + } + + .\32xl\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .\32xl\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .\32xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .\32xl\:grid-cols-none { + grid-template-columns: none; + } + + .\32xl\:auto-cols-auto { + grid-auto-columns: auto; + } + + .\32xl\:auto-cols-min { + grid-auto-columns: -webkit-min-content; + grid-auto-columns: min-content; + } + + .\32xl\:auto-cols-max { + grid-auto-columns: -webkit-max-content; + grid-auto-columns: max-content; + } + + .\32xl\:auto-cols-fr { + grid-auto-columns: minmax(0, 1fr); + } + + .\32xl\:col-auto { + grid-column: auto; + } + + .\32xl\:col-span-1 { + grid-column: span 1 / span 1; + } + + .\32xl\:col-span-2 { + grid-column: span 2 / span 2; + } + + .\32xl\:col-span-3 { + grid-column: span 3 / span 3; + } + + .\32xl\:col-span-4 { + grid-column: span 4 / span 4; + } + + .\32xl\:col-span-5 { + grid-column: span 5 / span 5; + } + + .\32xl\:col-span-6 { + grid-column: span 6 / span 6; + } + + .\32xl\:col-span-7 { + grid-column: span 7 / span 7; + } + + .\32xl\:col-span-8 { + grid-column: span 8 / span 8; + } + + .\32xl\:col-span-9 { + grid-column: span 9 / span 9; + } + + .\32xl\:col-span-10 { + grid-column: span 10 / span 10; + } + + .\32xl\:col-span-11 { + grid-column: span 11 / span 11; + } + + .\32xl\:col-span-12 { + grid-column: span 12 / span 12; + } + + .\32xl\:col-span-full { + grid-column: 1 / -1; + } + + .\32xl\:col-start-1 { + grid-column-start: 1; + } + + .\32xl\:col-start-2 { + grid-column-start: 2; + } + + .\32xl\:col-start-3 { + grid-column-start: 3; + } + + .\32xl\:col-start-4 { + grid-column-start: 4; + } + + .\32xl\:col-start-5 { + grid-column-start: 5; + } + + .\32xl\:col-start-6 { + grid-column-start: 6; + } + + .\32xl\:col-start-7 { + grid-column-start: 7; + } + + .\32xl\:col-start-8 { + grid-column-start: 8; + } + + .\32xl\:col-start-9 { + grid-column-start: 9; + } + + .\32xl\:col-start-10 { + grid-column-start: 10; + } + + .\32xl\:col-start-11 { + grid-column-start: 11; + } + + .\32xl\:col-start-12 { + grid-column-start: 12; + } + + .\32xl\:col-start-13 { + grid-column-start: 13; + } + + .\32xl\:col-start-auto { + grid-column-start: auto; + } + + .\32xl\:col-end-1 { + grid-column-end: 1; + } + + .\32xl\:col-end-2 { + grid-column-end: 2; + } + + .\32xl\:col-end-3 { + grid-column-end: 3; + } + + .\32xl\:col-end-4 { + grid-column-end: 4; + } + + .\32xl\:col-end-5 { + grid-column-end: 5; + } + + .\32xl\:col-end-6 { + grid-column-end: 6; + } + + .\32xl\:col-end-7 { + grid-column-end: 7; + } + + .\32xl\:col-end-8 { + grid-column-end: 8; + } + + .\32xl\:col-end-9 { + grid-column-end: 9; + } + + .\32xl\:col-end-10 { + grid-column-end: 10; + } + + .\32xl\:col-end-11 { + grid-column-end: 11; + } + + .\32xl\:col-end-12 { + grid-column-end: 12; + } + + .\32xl\:col-end-13 { + grid-column-end: 13; + } + + .\32xl\:col-end-auto { + grid-column-end: auto; + } + + .\32xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .\32xl\:grid-rows-none { + grid-template-rows: none; + } + + .\32xl\:auto-rows-auto { + grid-auto-rows: auto; + } + + .\32xl\:auto-rows-min { + grid-auto-rows: -webkit-min-content; + grid-auto-rows: min-content; + } + + .\32xl\:auto-rows-max { + grid-auto-rows: -webkit-max-content; + grid-auto-rows: max-content; + } + + .\32xl\:auto-rows-fr { + grid-auto-rows: minmax(0, 1fr); + } + + .\32xl\:row-auto { + grid-row: auto; + } + + .\32xl\:row-span-1 { + grid-row: span 1 / span 1; + } + + .\32xl\:row-span-2 { + grid-row: span 2 / span 2; + } + + .\32xl\:row-span-3 { + grid-row: span 3 / span 3; + } + + .\32xl\:row-span-4 { + grid-row: span 4 / span 4; + } + + .\32xl\:row-span-5 { + grid-row: span 5 / span 5; + } + + .\32xl\:row-span-6 { + grid-row: span 6 / span 6; + } + + .\32xl\:row-span-full { + grid-row: 1 / -1; + } + + .\32xl\:row-start-1 { + grid-row-start: 1; + } + + .\32xl\:row-start-2 { + grid-row-start: 2; + } + + .\32xl\:row-start-3 { + grid-row-start: 3; + } + + .\32xl\:row-start-4 { + grid-row-start: 4; + } + + .\32xl\:row-start-5 { + grid-row-start: 5; + } + + .\32xl\:row-start-6 { + grid-row-start: 6; + } + + .\32xl\:row-start-7 { + grid-row-start: 7; + } + + .\32xl\:row-start-auto { + grid-row-start: auto; + } + + .\32xl\:row-end-1 { + grid-row-end: 1; + } + + .\32xl\:row-end-2 { + grid-row-end: 2; + } + + .\32xl\:row-end-3 { + grid-row-end: 3; + } + + .\32xl\:row-end-4 { + grid-row-end: 4; + } + + .\32xl\:row-end-5 { + grid-row-end: 5; + } + + .\32xl\:row-end-6 { + grid-row-end: 6; + } + + .\32xl\:row-end-7 { + grid-row-end: 7; + } + + .\32xl\:row-end-auto { + grid-row-end: auto; + } + + .\32xl\:transform { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .\32xl\:transform-gpu { + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); + } + + .\32xl\:transform-none { + transform: none; + } + + .\32xl\:origin-center { + transform-origin: center; + } + + .\32xl\:origin-top { + transform-origin: top; + } + + .\32xl\:origin-top-right { + transform-origin: top right; + } + + .\32xl\:origin-right { + transform-origin: right; + } + + .\32xl\:origin-bottom-right { + transform-origin: bottom right; + } + + .\32xl\:origin-bottom { + transform-origin: bottom; + } + + .\32xl\:origin-bottom-left { + transform-origin: bottom left; + } + + .\32xl\:origin-left { + transform-origin: left; + } + + .\32xl\:origin-top-left { + transform-origin: top left; + } + + .\32xl\:scale-0 { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:scale-50 { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:scale-75 { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:scale-90 { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:scale-95 { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:scale-100 { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:scale-105 { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:scale-110 { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:scale-125 { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:scale-150 { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:scale-x-0 { + --tw-scale-x: 0; + } + + .\32xl\:scale-x-50 { + --tw-scale-x: .5; + } + + .\32xl\:scale-x-75 { + --tw-scale-x: .75; + } + + .\32xl\:scale-x-90 { + --tw-scale-x: .9; + } + + .\32xl\:scale-x-95 { + --tw-scale-x: .95; + } + + .\32xl\:scale-x-100 { + --tw-scale-x: 1; + } + + .\32xl\:scale-x-105 { + --tw-scale-x: 1.05; + } + + .\32xl\:scale-x-110 { + --tw-scale-x: 1.1; + } + + .\32xl\:scale-x-125 { + --tw-scale-x: 1.25; + } + + .\32xl\:scale-x-150 { + --tw-scale-x: 1.5; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .\32xl\:scale-y-150 { + --tw-scale-y: 1.5; + } + + .\32xl\:hover\:scale-0:hover { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:hover\:scale-50:hover { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:hover\:scale-75:hover { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:hover\:scale-90:hover { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:hover\:scale-95:hover { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:hover\:scale-100:hover { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:hover\:scale-105:hover { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:hover\:scale-110:hover { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:hover\:scale-125:hover { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:hover\:scale-150:hover { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:hover\:scale-x-0:hover { + --tw-scale-x: 0; + } + + .\32xl\:hover\:scale-x-50:hover { + --tw-scale-x: .5; + } + + .\32xl\:hover\:scale-x-75:hover { + --tw-scale-x: .75; + } + + .\32xl\:hover\:scale-x-90:hover { + --tw-scale-x: .9; + } + + .\32xl\:hover\:scale-x-95:hover { + --tw-scale-x: .95; + } + + .\32xl\:hover\:scale-x-100:hover { + --tw-scale-x: 1; + } + + .\32xl\:hover\:scale-x-105:hover { + --tw-scale-x: 1.05; + } + + .\32xl\:hover\:scale-x-110:hover { + --tw-scale-x: 1.1; + } + + .\32xl\:hover\:scale-x-125:hover { + --tw-scale-x: 1.25; + } + + .\32xl\:hover\:scale-x-150:hover { + --tw-scale-x: 1.5; + } + + .\32xl\:hover\:scale-y-0:hover { + --tw-scale-y: 0; + } + + .\32xl\:hover\:scale-y-50:hover { + --tw-scale-y: .5; + } + + .\32xl\:hover\:scale-y-75:hover { + --tw-scale-y: .75; + } + + .\32xl\:hover\:scale-y-90:hover { + --tw-scale-y: .9; + } + + .\32xl\:hover\:scale-y-95:hover { + --tw-scale-y: .95; + } + + .\32xl\:hover\:scale-y-100:hover { + --tw-scale-y: 1; + } + + .\32xl\:hover\:scale-y-105:hover { + --tw-scale-y: 1.05; + } + + .\32xl\:hover\:scale-y-110:hover { + --tw-scale-y: 1.1; + } + + .\32xl\:hover\:scale-y-125:hover { + --tw-scale-y: 1.25; + } + + .\32xl\:hover\:scale-y-150:hover { + --tw-scale-y: 1.5; + } + + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; + --tw-scale-y: 0; + } + + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; + --tw-scale-y: .5; + } + + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; + --tw-scale-y: .75; + } + + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; + --tw-scale-y: .9; + } + + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; + --tw-scale-y: .95; + } + + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; + --tw-scale-y: 1; + } + + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; + --tw-scale-y: 1.05; + } + + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; + --tw-scale-y: 1.1; + } + + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; + --tw-scale-y: 1.25; + } + + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; + --tw-scale-y: 1.5; + } + + .\32xl\:focus\:scale-x-0:focus { + --tw-scale-x: 0; + } + + .\32xl\:focus\:scale-x-50:focus { + --tw-scale-x: .5; + } + + .\32xl\:focus\:scale-x-75:focus { + --tw-scale-x: .75; + } + + .\32xl\:focus\:scale-x-90:focus { + --tw-scale-x: .9; + } + + .\32xl\:focus\:scale-x-95:focus { + --tw-scale-x: .95; + } + + .\32xl\:focus\:scale-x-100:focus { + --tw-scale-x: 1; + } + + .\32xl\:focus\:scale-x-105:focus { + --tw-scale-x: 1.05; + } + + .\32xl\:focus\:scale-x-110:focus { + --tw-scale-x: 1.1; + } + + .\32xl\:focus\:scale-x-125:focus { + --tw-scale-x: 1.25; + } + + .\32xl\:focus\:scale-x-150:focus { + --tw-scale-x: 1.5; + } + + .\32xl\:focus\:scale-y-0:focus { + --tw-scale-y: 0; + } + + .\32xl\:focus\:scale-y-50:focus { + --tw-scale-y: .5; + } + + .\32xl\:focus\:scale-y-75:focus { + --tw-scale-y: .75; + } + + .\32xl\:focus\:scale-y-90:focus { + --tw-scale-y: .9; + } + + .\32xl\:focus\:scale-y-95:focus { + --tw-scale-y: .95; + } + + .\32xl\:focus\:scale-y-100:focus { + --tw-scale-y: 1; + } + + .\32xl\:focus\:scale-y-105:focus { + --tw-scale-y: 1.05; + } + + .\32xl\:focus\:scale-y-110:focus { + --tw-scale-y: 1.1; + } + + .\32xl\:focus\:scale-y-125:focus { + --tw-scale-y: 1.25; + } + + .\32xl\:focus\:scale-y-150:focus { + --tw-scale-y: 1.5; + } + + .\32xl\:rotate-0 { + --tw-rotate: 0deg; + } + + .\32xl\:rotate-1 { + --tw-rotate: 1deg; + } + + .\32xl\:rotate-2 { + --tw-rotate: 2deg; + } + + .\32xl\:rotate-3 { + --tw-rotate: 3deg; + } + + .\32xl\:rotate-6 { + --tw-rotate: 6deg; + } + + .\32xl\:rotate-12 { + --tw-rotate: 12deg; + } + + .\32xl\:rotate-45 { + --tw-rotate: 45deg; + } + + .\32xl\:rotate-90 { + --tw-rotate: 90deg; + } + + .\32xl\:rotate-180 { + --tw-rotate: 180deg; + } + + .\32xl\:-rotate-180 { + --tw-rotate: -180deg; + } + + .\32xl\:-rotate-90 { + --tw-rotate: -90deg; + } + + .\32xl\:-rotate-45 { + --tw-rotate: -45deg; + } + + .\32xl\:-rotate-12 { + --tw-rotate: -12deg; + } + + .\32xl\:-rotate-6 { + --tw-rotate: -6deg; + } + + .\32xl\:-rotate-3 { + --tw-rotate: -3deg; + } + + .\32xl\:-rotate-2 { + --tw-rotate: -2deg; + } + + .\32xl\:-rotate-1 { + --tw-rotate: -1deg; + } + + .\32xl\:hover\:rotate-0:hover { + --tw-rotate: 0deg; + } + + .\32xl\:hover\:rotate-1:hover { + --tw-rotate: 1deg; + } + + .\32xl\:hover\:rotate-2:hover { + --tw-rotate: 2deg; + } + + .\32xl\:hover\:rotate-3:hover { + --tw-rotate: 3deg; + } + + .\32xl\:hover\:rotate-6:hover { + --tw-rotate: 6deg; + } + + .\32xl\:hover\:rotate-12:hover { + --tw-rotate: 12deg; + } + + .\32xl\:hover\:rotate-45:hover { + --tw-rotate: 45deg; + } + + .\32xl\:hover\:rotate-90:hover { + --tw-rotate: 90deg; + } + + .\32xl\:hover\:rotate-180:hover { + --tw-rotate: 180deg; + } + + .\32xl\:hover\:-rotate-180:hover { + --tw-rotate: -180deg; + } + + .\32xl\:hover\:-rotate-90:hover { + --tw-rotate: -90deg; + } + + .\32xl\:hover\:-rotate-45:hover { + --tw-rotate: -45deg; + } + + .\32xl\:hover\:-rotate-12:hover { + --tw-rotate: -12deg; + } + + .\32xl\:hover\:-rotate-6:hover { + --tw-rotate: -6deg; + } + + .\32xl\:hover\:-rotate-3:hover { + --tw-rotate: -3deg; + } + + .\32xl\:hover\:-rotate-2:hover { + --tw-rotate: -2deg; + } + + .\32xl\:hover\:-rotate-1:hover { + --tw-rotate: -1deg; + } + + .\32xl\:focus\:rotate-0:focus { + --tw-rotate: 0deg; + } + + .\32xl\:focus\:rotate-1:focus { + --tw-rotate: 1deg; + } + + .\32xl\:focus\:rotate-2:focus { + --tw-rotate: 2deg; + } + + .\32xl\:focus\:rotate-3:focus { + --tw-rotate: 3deg; + } + + .\32xl\:focus\:rotate-6:focus { + --tw-rotate: 6deg; + } + + .\32xl\:focus\:rotate-12:focus { + --tw-rotate: 12deg; + } + + .\32xl\:focus\:rotate-45:focus { + --tw-rotate: 45deg; + } + + .\32xl\:focus\:rotate-90:focus { + --tw-rotate: 90deg; + } + + .\32xl\:focus\:rotate-180:focus { + --tw-rotate: 180deg; + } + + .\32xl\:focus\:-rotate-180:focus { + --tw-rotate: -180deg; + } + + .\32xl\:focus\:-rotate-90:focus { + --tw-rotate: -90deg; + } + + .\32xl\:focus\:-rotate-45:focus { + --tw-rotate: -45deg; + } + + .\32xl\:focus\:-rotate-12:focus { + --tw-rotate: -12deg; + } + + .\32xl\:focus\:-rotate-6:focus { + --tw-rotate: -6deg; + } + + .\32xl\:focus\:-rotate-3:focus { + --tw-rotate: -3deg; + } + + .\32xl\:focus\:-rotate-2:focus { + --tw-rotate: -2deg; + } + + .\32xl\:focus\:-rotate-1:focus { + --tw-rotate: -1deg; + } + + .\32xl\:translate-x-0 { + --tw-translate-x: 0px; + } + + .\32xl\:translate-x-1 { + --tw-translate-x: 0.25rem; + } + + .\32xl\:translate-x-2 { + --tw-translate-x: 0.5rem; + } + + .\32xl\:translate-x-3 { + --tw-translate-x: 0.75rem; + } + + .\32xl\:translate-x-4 { + --tw-translate-x: 1rem; + } + + .\32xl\:translate-x-5 { + --tw-translate-x: 1.25rem; + } + + .\32xl\:translate-x-6 { + --tw-translate-x: 1.5rem; + } + + .\32xl\:translate-x-7 { + --tw-translate-x: 1.75rem; + } + + .\32xl\:translate-x-8 { + --tw-translate-x: 2rem; + } + + .\32xl\:translate-x-9 { + --tw-translate-x: 2.25rem; + } + + .\32xl\:translate-x-10 { + --tw-translate-x: 2.5rem; + } + + .\32xl\:translate-x-11 { + --tw-translate-x: 2.75rem; + } + + .\32xl\:translate-x-12 { + --tw-translate-x: 3rem; + } + + .\32xl\:translate-x-14 { + --tw-translate-x: 3.5rem; + } + + .\32xl\:translate-x-16 { + --tw-translate-x: 4rem; + } + + .\32xl\:translate-x-20 { + --tw-translate-x: 5rem; + } + + .\32xl\:translate-x-24 { + --tw-translate-x: 6rem; + } + + .\32xl\:translate-x-28 { + --tw-translate-x: 7rem; + } + + .\32xl\:translate-x-32 { + --tw-translate-x: 8rem; + } + + .\32xl\:translate-x-36 { + --tw-translate-x: 9rem; + } + + .\32xl\:translate-x-40 { + --tw-translate-x: 10rem; + } + + .\32xl\:translate-x-44 { + --tw-translate-x: 11rem; + } + + .\32xl\:translate-x-48 { + --tw-translate-x: 12rem; + } + + .\32xl\:translate-x-52 { + --tw-translate-x: 13rem; + } + + .\32xl\:translate-x-56 { + --tw-translate-x: 14rem; + } + + .\32xl\:translate-x-60 { + --tw-translate-x: 15rem; + } + + .\32xl\:translate-x-64 { + --tw-translate-x: 16rem; + } + + .\32xl\:translate-x-72 { + --tw-translate-x: 18rem; + } + + .\32xl\:translate-x-80 { + --tw-translate-x: 20rem; + } + + .\32xl\:translate-x-96 { + --tw-translate-x: 24rem; + } + + .\32xl\:translate-x-px { + --tw-translate-x: 1px; + } + + .\32xl\:translate-x-0\.5 { + --tw-translate-x: 0.125rem; + } + + .\32xl\:translate-x-1\.5 { + --tw-translate-x: 0.375rem; + } + + .\32xl\:translate-x-2\.5 { + --tw-translate-x: 0.625rem; + } + + .\32xl\:translate-x-3\.5 { + --tw-translate-x: 0.875rem; + } + + .\32xl\:-translate-x-0 { + --tw-translate-x: 0px; + } + + .\32xl\:-translate-x-1 { + --tw-translate-x: -0.25rem; + } + + .\32xl\:-translate-x-2 { + --tw-translate-x: -0.5rem; + } + + .\32xl\:-translate-x-3 { + --tw-translate-x: -0.75rem; + } + + .\32xl\:-translate-x-4 { + --tw-translate-x: -1rem; + } + + .\32xl\:-translate-x-5 { + --tw-translate-x: -1.25rem; + } + + .\32xl\:-translate-x-6 { + --tw-translate-x: -1.5rem; + } + + .\32xl\:-translate-x-7 { + --tw-translate-x: -1.75rem; + } + + .\32xl\:-translate-x-8 { + --tw-translate-x: -2rem; + } + + .\32xl\:-translate-x-9 { + --tw-translate-x: -2.25rem; + } + + .\32xl\:-translate-x-10 { + --tw-translate-x: -2.5rem; + } + + .\32xl\:-translate-x-11 { + --tw-translate-x: -2.75rem; + } + + .\32xl\:-translate-x-12 { + --tw-translate-x: -3rem; + } + + .\32xl\:-translate-x-14 { + --tw-translate-x: -3.5rem; + } + + .\32xl\:-translate-x-16 { + --tw-translate-x: -4rem; + } + + .\32xl\:-translate-x-20 { + --tw-translate-x: -5rem; + } + + .\32xl\:-translate-x-24 { + --tw-translate-x: -6rem; + } + + .\32xl\:-translate-x-28 { + --tw-translate-x: -7rem; + } + + .\32xl\:-translate-x-32 { + --tw-translate-x: -8rem; + } + + .\32xl\:-translate-x-36 { + --tw-translate-x: -9rem; + } + + .\32xl\:-translate-x-40 { + --tw-translate-x: -10rem; + } + + .\32xl\:-translate-x-44 { + --tw-translate-x: -11rem; + } + + .\32xl\:-translate-x-48 { + --tw-translate-x: -12rem; + } + + .\32xl\:-translate-x-52 { + --tw-translate-x: -13rem; + } + + .\32xl\:-translate-x-56 { + --tw-translate-x: -14rem; + } + + .\32xl\:-translate-x-60 { + --tw-translate-x: -15rem; + } + + .\32xl\:-translate-x-64 { + --tw-translate-x: -16rem; + } + + .\32xl\:-translate-x-72 { + --tw-translate-x: -18rem; + } + + .\32xl\:-translate-x-80 { + --tw-translate-x: -20rem; + } + + .\32xl\:-translate-x-96 { + --tw-translate-x: -24rem; + } + + .\32xl\:-translate-x-px { + --tw-translate-x: -1px; + } + + .\32xl\:-translate-x-0\.5 { + --tw-translate-x: -0.125rem; + } + + .\32xl\:-translate-x-1\.5 { + --tw-translate-x: -0.375rem; + } + + .\32xl\:-translate-x-2\.5 { + --tw-translate-x: -0.625rem; + } + + .\32xl\:-translate-x-3\.5 { + --tw-translate-x: -0.875rem; + } + + .\32xl\:translate-x-1\/2 { + --tw-translate-x: 50%; + } + + .\32xl\:translate-x-1\/3 { + --tw-translate-x: 33.333333%; + } + + .\32xl\:translate-x-2\/3 { + --tw-translate-x: 66.666667%; + } + + .\32xl\:translate-x-1\/4 { + --tw-translate-x: 25%; + } + + .\32xl\:translate-x-2\/4 { + --tw-translate-x: 50%; + } + + .\32xl\:translate-x-3\/4 { + --tw-translate-x: 75%; + } + + .\32xl\:translate-x-full { + --tw-translate-x: 100%; + } + + .\32xl\:-translate-x-1\/2 { + --tw-translate-x: -50%; + } + + .\32xl\:-translate-x-1\/3 { + --tw-translate-x: -33.333333%; + } + + .\32xl\:-translate-x-2\/3 { + --tw-translate-x: -66.666667%; + } + + .\32xl\:-translate-x-1\/4 { + --tw-translate-x: -25%; + } + + .\32xl\:-translate-x-2\/4 { + --tw-translate-x: -50%; + } + + .\32xl\:-translate-x-3\/4 { + --tw-translate-x: -75%; + } + + .\32xl\:-translate-x-full { + --tw-translate-x: -100%; + } + + .\32xl\:translate-y-0 { + --tw-translate-y: 0px; + } + + .\32xl\:translate-y-1 { + --tw-translate-y: 0.25rem; + } + + .\32xl\:translate-y-2 { + --tw-translate-y: 0.5rem; + } + + .\32xl\:translate-y-3 { + --tw-translate-y: 0.75rem; + } + + .\32xl\:translate-y-4 { + --tw-translate-y: 1rem; + } + + .\32xl\:translate-y-5 { + --tw-translate-y: 1.25rem; + } + + .\32xl\:translate-y-6 { + --tw-translate-y: 1.5rem; + } + + .\32xl\:translate-y-7 { + --tw-translate-y: 1.75rem; + } + + .\32xl\:translate-y-8 { + --tw-translate-y: 2rem; + } + + .\32xl\:translate-y-9 { + --tw-translate-y: 2.25rem; + } + + .\32xl\:translate-y-10 { + --tw-translate-y: 2.5rem; + } + + .\32xl\:translate-y-11 { + --tw-translate-y: 2.75rem; + } + + .\32xl\:translate-y-12 { + --tw-translate-y: 3rem; + } + + .\32xl\:translate-y-14 { + --tw-translate-y: 3.5rem; + } + + .\32xl\:translate-y-16 { + --tw-translate-y: 4rem; + } + + .\32xl\:translate-y-20 { + --tw-translate-y: 5rem; + } + + .\32xl\:translate-y-24 { + --tw-translate-y: 6rem; + } + + .\32xl\:translate-y-28 { + --tw-translate-y: 7rem; + } + + .\32xl\:translate-y-32 { + --tw-translate-y: 8rem; + } + + .\32xl\:translate-y-36 { + --tw-translate-y: 9rem; + } + + .\32xl\:translate-y-40 { + --tw-translate-y: 10rem; + } + + .\32xl\:translate-y-44 { + --tw-translate-y: 11rem; + } + + .\32xl\:translate-y-48 { + --tw-translate-y: 12rem; + } + + .\32xl\:translate-y-52 { + --tw-translate-y: 13rem; + } + + .\32xl\:translate-y-56 { + --tw-translate-y: 14rem; + } + + .\32xl\:translate-y-60 { + --tw-translate-y: 15rem; + } + + .\32xl\:translate-y-64 { + --tw-translate-y: 16rem; + } + + .\32xl\:translate-y-72 { + --tw-translate-y: 18rem; + } + + .\32xl\:translate-y-80 { + --tw-translate-y: 20rem; + } + + .\32xl\:translate-y-96 { + --tw-translate-y: 24rem; + } + + .\32xl\:translate-y-px { + --tw-translate-y: 1px; + } + + .\32xl\:translate-y-0\.5 { + --tw-translate-y: 0.125rem; + } + + .\32xl\:translate-y-1\.5 { + --tw-translate-y: 0.375rem; + } + + .\32xl\:translate-y-2\.5 { + --tw-translate-y: 0.625rem; + } + + .\32xl\:translate-y-3\.5 { + --tw-translate-y: 0.875rem; + } + + .\32xl\:-translate-y-0 { + --tw-translate-y: 0px; + } + + .\32xl\:-translate-y-1 { + --tw-translate-y: -0.25rem; + } + + .\32xl\:-translate-y-2 { + --tw-translate-y: -0.5rem; + } + + .\32xl\:-translate-y-3 { + --tw-translate-y: -0.75rem; + } + + .\32xl\:-translate-y-4 { + --tw-translate-y: -1rem; + } + + .\32xl\:-translate-y-5 { + --tw-translate-y: -1.25rem; + } + + .\32xl\:-translate-y-6 { + --tw-translate-y: -1.5rem; + } + + .\32xl\:-translate-y-7 { + --tw-translate-y: -1.75rem; + } + + .\32xl\:-translate-y-8 { + --tw-translate-y: -2rem; + } + + .\32xl\:-translate-y-9 { + --tw-translate-y: -2.25rem; + } + + .\32xl\:-translate-y-10 { + --tw-translate-y: -2.5rem; + } + + .\32xl\:-translate-y-11 { + --tw-translate-y: -2.75rem; + } + + .\32xl\:-translate-y-12 { + --tw-translate-y: -3rem; + } + + .\32xl\:-translate-y-14 { + --tw-translate-y: -3.5rem; + } + + .\32xl\:-translate-y-16 { + --tw-translate-y: -4rem; + } + + .\32xl\:-translate-y-20 { + --tw-translate-y: -5rem; + } + + .\32xl\:-translate-y-24 { + --tw-translate-y: -6rem; + } + + .\32xl\:-translate-y-28 { + --tw-translate-y: -7rem; + } + + .\32xl\:-translate-y-32 { + --tw-translate-y: -8rem; + } + + .\32xl\:-translate-y-36 { + --tw-translate-y: -9rem; + } + + .\32xl\:-translate-y-40 { + --tw-translate-y: -10rem; + } + + .\32xl\:-translate-y-44 { + --tw-translate-y: -11rem; + } + + .\32xl\:-translate-y-48 { + --tw-translate-y: -12rem; + } + + .\32xl\:-translate-y-52 { + --tw-translate-y: -13rem; + } + + .\32xl\:-translate-y-56 { + --tw-translate-y: -14rem; + } + + .\32xl\:-translate-y-60 { + --tw-translate-y: -15rem; + } + + .\32xl\:-translate-y-64 { + --tw-translate-y: -16rem; + } + + .\32xl\:-translate-y-72 { + --tw-translate-y: -18rem; + } + + .\32xl\:-translate-y-80 { + --tw-translate-y: -20rem; + } + + .\32xl\:-translate-y-96 { + --tw-translate-y: -24rem; + } + + .\32xl\:-translate-y-px { + --tw-translate-y: -1px; + } + + .\32xl\:-translate-y-0\.5 { + --tw-translate-y: -0.125rem; + } + + .\32xl\:-translate-y-1\.5 { + --tw-translate-y: -0.375rem; + } + + .\32xl\:-translate-y-2\.5 { + --tw-translate-y: -0.625rem; + } + + .\32xl\:-translate-y-3\.5 { + --tw-translate-y: -0.875rem; + } + + .\32xl\:translate-y-1\/2 { + --tw-translate-y: 50%; + } + + .\32xl\:translate-y-1\/3 { + --tw-translate-y: 33.333333%; + } + + .\32xl\:translate-y-2\/3 { + --tw-translate-y: 66.666667%; + } + + .\32xl\:translate-y-1\/4 { + --tw-translate-y: 25%; + } + + .\32xl\:translate-y-2\/4 { + --tw-translate-y: 50%; + } + + .\32xl\:translate-y-3\/4 { + --tw-translate-y: 75%; + } + + .\32xl\:translate-y-full { + --tw-translate-y: 100%; + } + + .\32xl\:-translate-y-1\/2 { + --tw-translate-y: -50%; + } + + .\32xl\:-translate-y-1\/3 { + --tw-translate-y: -33.333333%; + } + + .\32xl\:-translate-y-2\/3 { + --tw-translate-y: -66.666667%; + } + + .\32xl\:-translate-y-1\/4 { + --tw-translate-y: -25%; + } + + .\32xl\:-translate-y-2\/4 { + --tw-translate-y: -50%; + } + + .\32xl\:-translate-y-3\/4 { + --tw-translate-y: -75%; + } + + .\32xl\:-translate-y-full { + --tw-translate-y: -100%; + } + + .\32xl\:hover\:translate-x-0:hover { + --tw-translate-x: 0px; + } + + .\32xl\:hover\:translate-x-1:hover { + --tw-translate-x: 0.25rem; + } + + .\32xl\:hover\:translate-x-2:hover { + --tw-translate-x: 0.5rem; + } + + .\32xl\:hover\:translate-x-3:hover { + --tw-translate-x: 0.75rem; + } + + .\32xl\:hover\:translate-x-4:hover { + --tw-translate-x: 1rem; + } + + .\32xl\:hover\:translate-x-5:hover { + --tw-translate-x: 1.25rem; + } + + .\32xl\:hover\:translate-x-6:hover { + --tw-translate-x: 1.5rem; + } + + .\32xl\:hover\:translate-x-7:hover { + --tw-translate-x: 1.75rem; + } + + .\32xl\:hover\:translate-x-8:hover { + --tw-translate-x: 2rem; + } + + .\32xl\:hover\:translate-x-9:hover { + --tw-translate-x: 2.25rem; + } + + .\32xl\:hover\:translate-x-10:hover { + --tw-translate-x: 2.5rem; + } + + .\32xl\:hover\:translate-x-11:hover { + --tw-translate-x: 2.75rem; + } + + .\32xl\:hover\:translate-x-12:hover { + --tw-translate-x: 3rem; + } + + .\32xl\:hover\:translate-x-14:hover { + --tw-translate-x: 3.5rem; + } + + .\32xl\:hover\:translate-x-16:hover { + --tw-translate-x: 4rem; + } + + .\32xl\:hover\:translate-x-20:hover { + --tw-translate-x: 5rem; + } + + .\32xl\:hover\:translate-x-24:hover { + --tw-translate-x: 6rem; + } + + .\32xl\:hover\:translate-x-28:hover { + --tw-translate-x: 7rem; + } + + .\32xl\:hover\:translate-x-32:hover { + --tw-translate-x: 8rem; + } + + .\32xl\:hover\:translate-x-36:hover { + --tw-translate-x: 9rem; + } + + .\32xl\:hover\:translate-x-40:hover { + --tw-translate-x: 10rem; + } + + .\32xl\:hover\:translate-x-44:hover { + --tw-translate-x: 11rem; + } + + .\32xl\:hover\:translate-x-48:hover { + --tw-translate-x: 12rem; + } + + .\32xl\:hover\:translate-x-52:hover { + --tw-translate-x: 13rem; + } + + .\32xl\:hover\:translate-x-56:hover { + --tw-translate-x: 14rem; + } + + .\32xl\:hover\:translate-x-60:hover { + --tw-translate-x: 15rem; + } + + .\32xl\:hover\:translate-x-64:hover { + --tw-translate-x: 16rem; + } + + .\32xl\:hover\:translate-x-72:hover { + --tw-translate-x: 18rem; + } + + .\32xl\:hover\:translate-x-80:hover { + --tw-translate-x: 20rem; + } + + .\32xl\:hover\:translate-x-96:hover { + --tw-translate-x: 24rem; + } + + .\32xl\:hover\:translate-x-px:hover { + --tw-translate-x: 1px; + } + + .\32xl\:hover\:translate-x-0\.5:hover { + --tw-translate-x: 0.125rem; + } + + .\32xl\:hover\:translate-x-1\.5:hover { + --tw-translate-x: 0.375rem; + } + + .\32xl\:hover\:translate-x-2\.5:hover { + --tw-translate-x: 0.625rem; + } + + .\32xl\:hover\:translate-x-3\.5:hover { + --tw-translate-x: 0.875rem; + } + + .\32xl\:hover\:-translate-x-0:hover { + --tw-translate-x: 0px; + } + + .\32xl\:hover\:-translate-x-1:hover { + --tw-translate-x: -0.25rem; + } + + .\32xl\:hover\:-translate-x-2:hover { + --tw-translate-x: -0.5rem; + } + + .\32xl\:hover\:-translate-x-3:hover { + --tw-translate-x: -0.75rem; + } + + .\32xl\:hover\:-translate-x-4:hover { + --tw-translate-x: -1rem; + } + + .\32xl\:hover\:-translate-x-5:hover { + --tw-translate-x: -1.25rem; + } + + .\32xl\:hover\:-translate-x-6:hover { + --tw-translate-x: -1.5rem; + } + + .\32xl\:hover\:-translate-x-7:hover { + --tw-translate-x: -1.75rem; + } + + .\32xl\:hover\:-translate-x-8:hover { + --tw-translate-x: -2rem; + } + + .\32xl\:hover\:-translate-x-9:hover { + --tw-translate-x: -2.25rem; + } + + .\32xl\:hover\:-translate-x-10:hover { + --tw-translate-x: -2.5rem; + } + + .\32xl\:hover\:-translate-x-11:hover { + --tw-translate-x: -2.75rem; + } + + .\32xl\:hover\:-translate-x-12:hover { + --tw-translate-x: -3rem; + } + + .\32xl\:hover\:-translate-x-14:hover { + --tw-translate-x: -3.5rem; + } + + .\32xl\:hover\:-translate-x-16:hover { + --tw-translate-x: -4rem; + } + + .\32xl\:hover\:-translate-x-20:hover { + --tw-translate-x: -5rem; + } + + .\32xl\:hover\:-translate-x-24:hover { + --tw-translate-x: -6rem; + } + + .\32xl\:hover\:-translate-x-28:hover { + --tw-translate-x: -7rem; + } + + .\32xl\:hover\:-translate-x-32:hover { + --tw-translate-x: -8rem; + } + + .\32xl\:hover\:-translate-x-36:hover { + --tw-translate-x: -9rem; + } + + .\32xl\:hover\:-translate-x-40:hover { + --tw-translate-x: -10rem; + } + + .\32xl\:hover\:-translate-x-44:hover { + --tw-translate-x: -11rem; + } + + .\32xl\:hover\:-translate-x-48:hover { + --tw-translate-x: -12rem; + } + + .\32xl\:hover\:-translate-x-52:hover { + --tw-translate-x: -13rem; + } + + .\32xl\:hover\:-translate-x-56:hover { + --tw-translate-x: -14rem; + } + + .\32xl\:hover\:-translate-x-60:hover { + --tw-translate-x: -15rem; + } + + .\32xl\:hover\:-translate-x-64:hover { + --tw-translate-x: -16rem; + } + + .\32xl\:hover\:-translate-x-72:hover { + --tw-translate-x: -18rem; + } + + .\32xl\:hover\:-translate-x-80:hover { + --tw-translate-x: -20rem; + } + + .\32xl\:hover\:-translate-x-96:hover { + --tw-translate-x: -24rem; + } + + .\32xl\:hover\:-translate-x-px:hover { + --tw-translate-x: -1px; + } + + .\32xl\:hover\:-translate-x-0\.5:hover { + --tw-translate-x: -0.125rem; + } + + .\32xl\:hover\:-translate-x-1\.5:hover { + --tw-translate-x: -0.375rem; + } + + .\32xl\:hover\:-translate-x-2\.5:hover { + --tw-translate-x: -0.625rem; + } + + .\32xl\:hover\:-translate-x-3\.5:hover { + --tw-translate-x: -0.875rem; + } + + .\32xl\:hover\:translate-x-1\/2:hover { + --tw-translate-x: 50%; + } + + .\32xl\:hover\:translate-x-1\/3:hover { + --tw-translate-x: 33.333333%; + } + + .\32xl\:hover\:translate-x-2\/3:hover { + --tw-translate-x: 66.666667%; + } + + .\32xl\:hover\:translate-x-1\/4:hover { + --tw-translate-x: 25%; + } + + .\32xl\:hover\:translate-x-2\/4:hover { + --tw-translate-x: 50%; + } + + .\32xl\:hover\:translate-x-3\/4:hover { + --tw-translate-x: 75%; + } + + .\32xl\:hover\:translate-x-full:hover { + --tw-translate-x: 100%; + } + + .\32xl\:hover\:-translate-x-1\/2:hover { + --tw-translate-x: -50%; + } + + .\32xl\:hover\:-translate-x-1\/3:hover { + --tw-translate-x: -33.333333%; + } + + .\32xl\:hover\:-translate-x-2\/3:hover { + --tw-translate-x: -66.666667%; + } + + .\32xl\:hover\:-translate-x-1\/4:hover { + --tw-translate-x: -25%; + } + + .\32xl\:hover\:-translate-x-2\/4:hover { + --tw-translate-x: -50%; + } + + .\32xl\:hover\:-translate-x-3\/4:hover { + --tw-translate-x: -75%; + } + + .\32xl\:hover\:-translate-x-full:hover { + --tw-translate-x: -100%; + } + + .\32xl\:hover\:translate-y-0:hover { + --tw-translate-y: 0px; + } + + .\32xl\:hover\:translate-y-1:hover { + --tw-translate-y: 0.25rem; + } + + .\32xl\:hover\:translate-y-2:hover { + --tw-translate-y: 0.5rem; + } + + .\32xl\:hover\:translate-y-3:hover { + --tw-translate-y: 0.75rem; + } + + .\32xl\:hover\:translate-y-4:hover { + --tw-translate-y: 1rem; + } + + .\32xl\:hover\:translate-y-5:hover { + --tw-translate-y: 1.25rem; + } + + .\32xl\:hover\:translate-y-6:hover { + --tw-translate-y: 1.5rem; + } + + .\32xl\:hover\:translate-y-7:hover { + --tw-translate-y: 1.75rem; + } + + .\32xl\:hover\:translate-y-8:hover { + --tw-translate-y: 2rem; + } + + .\32xl\:hover\:translate-y-9:hover { + --tw-translate-y: 2.25rem; + } + + .\32xl\:hover\:translate-y-10:hover { + --tw-translate-y: 2.5rem; + } + + .\32xl\:hover\:translate-y-11:hover { + --tw-translate-y: 2.75rem; + } + + .\32xl\:hover\:translate-y-12:hover { + --tw-translate-y: 3rem; + } + + .\32xl\:hover\:translate-y-14:hover { + --tw-translate-y: 3.5rem; + } + + .\32xl\:hover\:translate-y-16:hover { + --tw-translate-y: 4rem; + } + + .\32xl\:hover\:translate-y-20:hover { + --tw-translate-y: 5rem; + } + + .\32xl\:hover\:translate-y-24:hover { + --tw-translate-y: 6rem; + } + + .\32xl\:hover\:translate-y-28:hover { + --tw-translate-y: 7rem; + } + + .\32xl\:hover\:translate-y-32:hover { + --tw-translate-y: 8rem; + } + + .\32xl\:hover\:translate-y-36:hover { + --tw-translate-y: 9rem; + } + + .\32xl\:hover\:translate-y-40:hover { + --tw-translate-y: 10rem; + } + + .\32xl\:hover\:translate-y-44:hover { + --tw-translate-y: 11rem; + } + + .\32xl\:hover\:translate-y-48:hover { + --tw-translate-y: 12rem; + } + + .\32xl\:hover\:translate-y-52:hover { + --tw-translate-y: 13rem; + } + + .\32xl\:hover\:translate-y-56:hover { + --tw-translate-y: 14rem; + } + + .\32xl\:hover\:translate-y-60:hover { + --tw-translate-y: 15rem; + } + + .\32xl\:hover\:translate-y-64:hover { + --tw-translate-y: 16rem; + } + + .\32xl\:hover\:translate-y-72:hover { + --tw-translate-y: 18rem; + } + + .\32xl\:hover\:translate-y-80:hover { + --tw-translate-y: 20rem; + } + + .\32xl\:hover\:translate-y-96:hover { + --tw-translate-y: 24rem; + } + + .\32xl\:hover\:translate-y-px:hover { + --tw-translate-y: 1px; + } + + .\32xl\:hover\:translate-y-0\.5:hover { + --tw-translate-y: 0.125rem; + } + + .\32xl\:hover\:translate-y-1\.5:hover { + --tw-translate-y: 0.375rem; + } + + .\32xl\:hover\:translate-y-2\.5:hover { + --tw-translate-y: 0.625rem; + } + + .\32xl\:hover\:translate-y-3\.5:hover { + --tw-translate-y: 0.875rem; + } + + .\32xl\:hover\:-translate-y-0:hover { + --tw-translate-y: 0px; + } + + .\32xl\:hover\:-translate-y-1:hover { + --tw-translate-y: -0.25rem; + } + + .\32xl\:hover\:-translate-y-2:hover { + --tw-translate-y: -0.5rem; + } + + .\32xl\:hover\:-translate-y-3:hover { + --tw-translate-y: -0.75rem; + } + + .\32xl\:hover\:-translate-y-4:hover { + --tw-translate-y: -1rem; + } + + .\32xl\:hover\:-translate-y-5:hover { + --tw-translate-y: -1.25rem; + } + + .\32xl\:hover\:-translate-y-6:hover { + --tw-translate-y: -1.5rem; + } + + .\32xl\:hover\:-translate-y-7:hover { + --tw-translate-y: -1.75rem; + } + + .\32xl\:hover\:-translate-y-8:hover { + --tw-translate-y: -2rem; + } + + .\32xl\:hover\:-translate-y-9:hover { + --tw-translate-y: -2.25rem; + } + + .\32xl\:hover\:-translate-y-10:hover { + --tw-translate-y: -2.5rem; + } + + .\32xl\:hover\:-translate-y-11:hover { + --tw-translate-y: -2.75rem; + } + + .\32xl\:hover\:-translate-y-12:hover { + --tw-translate-y: -3rem; + } + + .\32xl\:hover\:-translate-y-14:hover { + --tw-translate-y: -3.5rem; + } + + .\32xl\:hover\:-translate-y-16:hover { + --tw-translate-y: -4rem; + } + + .\32xl\:hover\:-translate-y-20:hover { + --tw-translate-y: -5rem; + } + + .\32xl\:hover\:-translate-y-24:hover { + --tw-translate-y: -6rem; + } + + .\32xl\:hover\:-translate-y-28:hover { + --tw-translate-y: -7rem; + } + + .\32xl\:hover\:-translate-y-32:hover { + --tw-translate-y: -8rem; + } + + .\32xl\:hover\:-translate-y-36:hover { + --tw-translate-y: -9rem; + } + + .\32xl\:hover\:-translate-y-40:hover { + --tw-translate-y: -10rem; + } + + .\32xl\:hover\:-translate-y-44:hover { + --tw-translate-y: -11rem; + } + + .\32xl\:hover\:-translate-y-48:hover { + --tw-translate-y: -12rem; + } + + .\32xl\:hover\:-translate-y-52:hover { + --tw-translate-y: -13rem; + } + + .\32xl\:hover\:-translate-y-56:hover { + --tw-translate-y: -14rem; + } + + .\32xl\:hover\:-translate-y-60:hover { + --tw-translate-y: -15rem; + } + + .\32xl\:hover\:-translate-y-64:hover { + --tw-translate-y: -16rem; + } + + .\32xl\:hover\:-translate-y-72:hover { + --tw-translate-y: -18rem; + } + + .\32xl\:hover\:-translate-y-80:hover { + --tw-translate-y: -20rem; + } + + .\32xl\:hover\:-translate-y-96:hover { + --tw-translate-y: -24rem; + } + + .\32xl\:hover\:-translate-y-px:hover { + --tw-translate-y: -1px; + } + + .\32xl\:hover\:-translate-y-0\.5:hover { + --tw-translate-y: -0.125rem; + } + + .\32xl\:hover\:-translate-y-1\.5:hover { + --tw-translate-y: -0.375rem; + } + + .\32xl\:hover\:-translate-y-2\.5:hover { + --tw-translate-y: -0.625rem; + } + + .\32xl\:hover\:-translate-y-3\.5:hover { + --tw-translate-y: -0.875rem; + } + + .\32xl\:hover\:translate-y-1\/2:hover { + --tw-translate-y: 50%; + } + + .\32xl\:hover\:translate-y-1\/3:hover { + --tw-translate-y: 33.333333%; + } + + .\32xl\:hover\:translate-y-2\/3:hover { + --tw-translate-y: 66.666667%; + } + + .\32xl\:hover\:translate-y-1\/4:hover { + --tw-translate-y: 25%; + } + + .\32xl\:hover\:translate-y-2\/4:hover { + --tw-translate-y: 50%; + } + + .\32xl\:hover\:translate-y-3\/4:hover { + --tw-translate-y: 75%; + } + + .\32xl\:hover\:translate-y-full:hover { + --tw-translate-y: 100%; + } + + .\32xl\:hover\:-translate-y-1\/2:hover { + --tw-translate-y: -50%; + } + + .\32xl\:hover\:-translate-y-1\/3:hover { + --tw-translate-y: -33.333333%; + } + + .\32xl\:hover\:-translate-y-2\/3:hover { + --tw-translate-y: -66.666667%; + } + + .\32xl\:hover\:-translate-y-1\/4:hover { + --tw-translate-y: -25%; + } + + .\32xl\:hover\:-translate-y-2\/4:hover { + --tw-translate-y: -50%; + } + + .\32xl\:hover\:-translate-y-3\/4:hover { + --tw-translate-y: -75%; + } + + .\32xl\:hover\:-translate-y-full:hover { + --tw-translate-y: -100%; + } + + .\32xl\:focus\:translate-x-0:focus { + --tw-translate-x: 0px; + } + + .\32xl\:focus\:translate-x-1:focus { + --tw-translate-x: 0.25rem; + } + + .\32xl\:focus\:translate-x-2:focus { + --tw-translate-x: 0.5rem; + } + + .\32xl\:focus\:translate-x-3:focus { + --tw-translate-x: 0.75rem; + } + + .\32xl\:focus\:translate-x-4:focus { + --tw-translate-x: 1rem; + } + + .\32xl\:focus\:translate-x-5:focus { + --tw-translate-x: 1.25rem; + } + + .\32xl\:focus\:translate-x-6:focus { + --tw-translate-x: 1.5rem; + } + + .\32xl\:focus\:translate-x-7:focus { + --tw-translate-x: 1.75rem; + } + + .\32xl\:focus\:translate-x-8:focus { + --tw-translate-x: 2rem; + } + + .\32xl\:focus\:translate-x-9:focus { + --tw-translate-x: 2.25rem; + } + + .\32xl\:focus\:translate-x-10:focus { + --tw-translate-x: 2.5rem; + } + + .\32xl\:focus\:translate-x-11:focus { + --tw-translate-x: 2.75rem; + } + + .\32xl\:focus\:translate-x-12:focus { + --tw-translate-x: 3rem; + } + + .\32xl\:focus\:translate-x-14:focus { + --tw-translate-x: 3.5rem; + } + + .\32xl\:focus\:translate-x-16:focus { + --tw-translate-x: 4rem; + } + + .\32xl\:focus\:translate-x-20:focus { + --tw-translate-x: 5rem; + } + + .\32xl\:focus\:translate-x-24:focus { + --tw-translate-x: 6rem; + } + + .\32xl\:focus\:translate-x-28:focus { + --tw-translate-x: 7rem; + } + + .\32xl\:focus\:translate-x-32:focus { + --tw-translate-x: 8rem; + } + + .\32xl\:focus\:translate-x-36:focus { + --tw-translate-x: 9rem; + } + + .\32xl\:focus\:translate-x-40:focus { + --tw-translate-x: 10rem; + } + + .\32xl\:focus\:translate-x-44:focus { + --tw-translate-x: 11rem; + } + + .\32xl\:focus\:translate-x-48:focus { + --tw-translate-x: 12rem; + } + + .\32xl\:focus\:translate-x-52:focus { + --tw-translate-x: 13rem; + } + + .\32xl\:focus\:translate-x-56:focus { + --tw-translate-x: 14rem; + } + + .\32xl\:focus\:translate-x-60:focus { + --tw-translate-x: 15rem; + } + + .\32xl\:focus\:translate-x-64:focus { + --tw-translate-x: 16rem; + } + + .\32xl\:focus\:translate-x-72:focus { + --tw-translate-x: 18rem; + } + + .\32xl\:focus\:translate-x-80:focus { + --tw-translate-x: 20rem; + } + + .\32xl\:focus\:translate-x-96:focus { + --tw-translate-x: 24rem; + } + + .\32xl\:focus\:translate-x-px:focus { + --tw-translate-x: 1px; + } + + .\32xl\:focus\:translate-x-0\.5:focus { + --tw-translate-x: 0.125rem; + } + + .\32xl\:focus\:translate-x-1\.5:focus { + --tw-translate-x: 0.375rem; + } + + .\32xl\:focus\:translate-x-2\.5:focus { + --tw-translate-x: 0.625rem; + } + + .\32xl\:focus\:translate-x-3\.5:focus { + --tw-translate-x: 0.875rem; + } + + .\32xl\:focus\:-translate-x-0:focus { + --tw-translate-x: 0px; + } + + .\32xl\:focus\:-translate-x-1:focus { + --tw-translate-x: -0.25rem; + } + + .\32xl\:focus\:-translate-x-2:focus { + --tw-translate-x: -0.5rem; + } + + .\32xl\:focus\:-translate-x-3:focus { + --tw-translate-x: -0.75rem; + } + + .\32xl\:focus\:-translate-x-4:focus { + --tw-translate-x: -1rem; + } + + .\32xl\:focus\:-translate-x-5:focus { + --tw-translate-x: -1.25rem; + } + + .\32xl\:focus\:-translate-x-6:focus { + --tw-translate-x: -1.5rem; + } + + .\32xl\:focus\:-translate-x-7:focus { + --tw-translate-x: -1.75rem; + } + + .\32xl\:focus\:-translate-x-8:focus { + --tw-translate-x: -2rem; + } + + .\32xl\:focus\:-translate-x-9:focus { + --tw-translate-x: -2.25rem; + } + + .\32xl\:focus\:-translate-x-10:focus { + --tw-translate-x: -2.5rem; + } + + .\32xl\:focus\:-translate-x-11:focus { + --tw-translate-x: -2.75rem; + } + + .\32xl\:focus\:-translate-x-12:focus { + --tw-translate-x: -3rem; + } + + .\32xl\:focus\:-translate-x-14:focus { + --tw-translate-x: -3.5rem; + } + + .\32xl\:focus\:-translate-x-16:focus { + --tw-translate-x: -4rem; + } + + .\32xl\:focus\:-translate-x-20:focus { + --tw-translate-x: -5rem; + } + + .\32xl\:focus\:-translate-x-24:focus { + --tw-translate-x: -6rem; + } + + .\32xl\:focus\:-translate-x-28:focus { + --tw-translate-x: -7rem; + } + + .\32xl\:focus\:-translate-x-32:focus { + --tw-translate-x: -8rem; + } + + .\32xl\:focus\:-translate-x-36:focus { + --tw-translate-x: -9rem; + } + + .\32xl\:focus\:-translate-x-40:focus { + --tw-translate-x: -10rem; + } + + .\32xl\:focus\:-translate-x-44:focus { + --tw-translate-x: -11rem; + } + + .\32xl\:focus\:-translate-x-48:focus { + --tw-translate-x: -12rem; + } + + .\32xl\:focus\:-translate-x-52:focus { + --tw-translate-x: -13rem; + } + + .\32xl\:focus\:-translate-x-56:focus { + --tw-translate-x: -14rem; + } + + .\32xl\:focus\:-translate-x-60:focus { + --tw-translate-x: -15rem; + } + + .\32xl\:focus\:-translate-x-64:focus { + --tw-translate-x: -16rem; + } + + .\32xl\:focus\:-translate-x-72:focus { + --tw-translate-x: -18rem; + } + + .\32xl\:focus\:-translate-x-80:focus { + --tw-translate-x: -20rem; + } + + .\32xl\:focus\:-translate-x-96:focus { + --tw-translate-x: -24rem; + } + + .\32xl\:focus\:-translate-x-px:focus { + --tw-translate-x: -1px; + } + + .\32xl\:focus\:-translate-x-0\.5:focus { + --tw-translate-x: -0.125rem; + } + + .\32xl\:focus\:-translate-x-1\.5:focus { + --tw-translate-x: -0.375rem; + } + + .\32xl\:focus\:-translate-x-2\.5:focus { + --tw-translate-x: -0.625rem; + } + + .\32xl\:focus\:-translate-x-3\.5:focus { + --tw-translate-x: -0.875rem; + } + + .\32xl\:focus\:translate-x-1\/2:focus { + --tw-translate-x: 50%; + } + + .\32xl\:focus\:translate-x-1\/3:focus { + --tw-translate-x: 33.333333%; + } + + .\32xl\:focus\:translate-x-2\/3:focus { + --tw-translate-x: 66.666667%; + } + + .\32xl\:focus\:translate-x-1\/4:focus { + --tw-translate-x: 25%; + } + + .\32xl\:focus\:translate-x-2\/4:focus { + --tw-translate-x: 50%; + } + + .\32xl\:focus\:translate-x-3\/4:focus { + --tw-translate-x: 75%; + } + + .\32xl\:focus\:translate-x-full:focus { + --tw-translate-x: 100%; + } + + .\32xl\:focus\:-translate-x-1\/2:focus { + --tw-translate-x: -50%; + } + + .\32xl\:focus\:-translate-x-1\/3:focus { + --tw-translate-x: -33.333333%; + } + + .\32xl\:focus\:-translate-x-2\/3:focus { + --tw-translate-x: -66.666667%; + } + + .\32xl\:focus\:-translate-x-1\/4:focus { + --tw-translate-x: -25%; + } + + .\32xl\:focus\:-translate-x-2\/4:focus { + --tw-translate-x: -50%; + } + + .\32xl\:focus\:-translate-x-3\/4:focus { + --tw-translate-x: -75%; + } + + .\32xl\:focus\:-translate-x-full:focus { + --tw-translate-x: -100%; + } + + .\32xl\:focus\:translate-y-0:focus { + --tw-translate-y: 0px; + } + + .\32xl\:focus\:translate-y-1:focus { + --tw-translate-y: 0.25rem; + } + + .\32xl\:focus\:translate-y-2:focus { + --tw-translate-y: 0.5rem; + } + + .\32xl\:focus\:translate-y-3:focus { + --tw-translate-y: 0.75rem; + } + + .\32xl\:focus\:translate-y-4:focus { + --tw-translate-y: 1rem; + } + + .\32xl\:focus\:translate-y-5:focus { + --tw-translate-y: 1.25rem; + } + + .\32xl\:focus\:translate-y-6:focus { + --tw-translate-y: 1.5rem; + } + + .\32xl\:focus\:translate-y-7:focus { + --tw-translate-y: 1.75rem; + } + + .\32xl\:focus\:translate-y-8:focus { + --tw-translate-y: 2rem; + } + + .\32xl\:focus\:translate-y-9:focus { + --tw-translate-y: 2.25rem; + } + + .\32xl\:focus\:translate-y-10:focus { + --tw-translate-y: 2.5rem; + } + + .\32xl\:focus\:translate-y-11:focus { + --tw-translate-y: 2.75rem; + } + + .\32xl\:focus\:translate-y-12:focus { + --tw-translate-y: 3rem; + } + + .\32xl\:focus\:translate-y-14:focus { + --tw-translate-y: 3.5rem; + } + + .\32xl\:focus\:translate-y-16:focus { + --tw-translate-y: 4rem; + } + + .\32xl\:focus\:translate-y-20:focus { + --tw-translate-y: 5rem; + } + + .\32xl\:focus\:translate-y-24:focus { + --tw-translate-y: 6rem; + } + + .\32xl\:focus\:translate-y-28:focus { + --tw-translate-y: 7rem; + } + + .\32xl\:focus\:translate-y-32:focus { + --tw-translate-y: 8rem; + } + + .\32xl\:focus\:translate-y-36:focus { + --tw-translate-y: 9rem; + } + + .\32xl\:focus\:translate-y-40:focus { + --tw-translate-y: 10rem; + } + + .\32xl\:focus\:translate-y-44:focus { + --tw-translate-y: 11rem; + } + + .\32xl\:focus\:translate-y-48:focus { + --tw-translate-y: 12rem; + } + + .\32xl\:focus\:translate-y-52:focus { + --tw-translate-y: 13rem; + } + + .\32xl\:focus\:translate-y-56:focus { + --tw-translate-y: 14rem; + } + + .\32xl\:focus\:translate-y-60:focus { + --tw-translate-y: 15rem; + } + + .\32xl\:focus\:translate-y-64:focus { + --tw-translate-y: 16rem; + } + + .\32xl\:focus\:translate-y-72:focus { + --tw-translate-y: 18rem; + } + + .\32xl\:focus\:translate-y-80:focus { + --tw-translate-y: 20rem; + } + + .\32xl\:focus\:translate-y-96:focus { + --tw-translate-y: 24rem; + } + + .\32xl\:focus\:translate-y-px:focus { + --tw-translate-y: 1px; + } + + .\32xl\:focus\:translate-y-0\.5:focus { + --tw-translate-y: 0.125rem; + } + + .\32xl\:focus\:translate-y-1\.5:focus { + --tw-translate-y: 0.375rem; + } + + .\32xl\:focus\:translate-y-2\.5:focus { + --tw-translate-y: 0.625rem; + } + + .\32xl\:focus\:translate-y-3\.5:focus { + --tw-translate-y: 0.875rem; + } + + .\32xl\:focus\:-translate-y-0:focus { + --tw-translate-y: 0px; + } + + .\32xl\:focus\:-translate-y-1:focus { + --tw-translate-y: -0.25rem; + } + + .\32xl\:focus\:-translate-y-2:focus { + --tw-translate-y: -0.5rem; + } + + .\32xl\:focus\:-translate-y-3:focus { + --tw-translate-y: -0.75rem; + } + + .\32xl\:focus\:-translate-y-4:focus { + --tw-translate-y: -1rem; + } + + .\32xl\:focus\:-translate-y-5:focus { + --tw-translate-y: -1.25rem; + } + + .\32xl\:focus\:-translate-y-6:focus { + --tw-translate-y: -1.5rem; + } + + .\32xl\:focus\:-translate-y-7:focus { + --tw-translate-y: -1.75rem; + } + + .\32xl\:focus\:-translate-y-8:focus { + --tw-translate-y: -2rem; + } + + .\32xl\:focus\:-translate-y-9:focus { + --tw-translate-y: -2.25rem; + } + + .\32xl\:focus\:-translate-y-10:focus { + --tw-translate-y: -2.5rem; + } + + .\32xl\:focus\:-translate-y-11:focus { + --tw-translate-y: -2.75rem; + } + + .\32xl\:focus\:-translate-y-12:focus { + --tw-translate-y: -3rem; + } + + .\32xl\:focus\:-translate-y-14:focus { + --tw-translate-y: -3.5rem; + } + + .\32xl\:focus\:-translate-y-16:focus { + --tw-translate-y: -4rem; + } + + .\32xl\:focus\:-translate-y-20:focus { + --tw-translate-y: -5rem; + } + + .\32xl\:focus\:-translate-y-24:focus { + --tw-translate-y: -6rem; + } + + .\32xl\:focus\:-translate-y-28:focus { + --tw-translate-y: -7rem; + } + + .\32xl\:focus\:-translate-y-32:focus { + --tw-translate-y: -8rem; + } + + .\32xl\:focus\:-translate-y-36:focus { + --tw-translate-y: -9rem; + } + + .\32xl\:focus\:-translate-y-40:focus { + --tw-translate-y: -10rem; + } + + .\32xl\:focus\:-translate-y-44:focus { + --tw-translate-y: -11rem; + } + + .\32xl\:focus\:-translate-y-48:focus { + --tw-translate-y: -12rem; + } + + .\32xl\:focus\:-translate-y-52:focus { + --tw-translate-y: -13rem; + } + + .\32xl\:focus\:-translate-y-56:focus { + --tw-translate-y: -14rem; + } + + .\32xl\:focus\:-translate-y-60:focus { + --tw-translate-y: -15rem; + } + + .\32xl\:focus\:-translate-y-64:focus { + --tw-translate-y: -16rem; + } + + .\32xl\:focus\:-translate-y-72:focus { + --tw-translate-y: -18rem; + } + + .\32xl\:focus\:-translate-y-80:focus { + --tw-translate-y: -20rem; + } + + .\32xl\:focus\:-translate-y-96:focus { + --tw-translate-y: -24rem; + } + + .\32xl\:focus\:-translate-y-px:focus { + --tw-translate-y: -1px; + } + + .\32xl\:focus\:-translate-y-0\.5:focus { + --tw-translate-y: -0.125rem; + } + + .\32xl\:focus\:-translate-y-1\.5:focus { + --tw-translate-y: -0.375rem; + } + + .\32xl\:focus\:-translate-y-2\.5:focus { + --tw-translate-y: -0.625rem; + } + + .\32xl\:focus\:-translate-y-3\.5:focus { + --tw-translate-y: -0.875rem; + } + + .\32xl\:focus\:translate-y-1\/2:focus { + --tw-translate-y: 50%; + } + + .\32xl\:focus\:translate-y-1\/3:focus { + --tw-translate-y: 33.333333%; + } + + .\32xl\:focus\:translate-y-2\/3:focus { + --tw-translate-y: 66.666667%; + } + + .\32xl\:focus\:translate-y-1\/4:focus { + --tw-translate-y: 25%; + } + + .\32xl\:focus\:translate-y-2\/4:focus { + --tw-translate-y: 50%; + } + + .\32xl\:focus\:translate-y-3\/4:focus { + --tw-translate-y: 75%; + } + + .\32xl\:focus\:translate-y-full:focus { + --tw-translate-y: 100%; + } + + .\32xl\:focus\:-translate-y-1\/2:focus { + --tw-translate-y: -50%; + } + + .\32xl\:focus\:-translate-y-1\/3:focus { + --tw-translate-y: -33.333333%; + } + + .\32xl\:focus\:-translate-y-2\/3:focus { + --tw-translate-y: -66.666667%; + } + + .\32xl\:focus\:-translate-y-1\/4:focus { + --tw-translate-y: -25%; + } + + .\32xl\:focus\:-translate-y-2\/4:focus { + --tw-translate-y: -50%; + } + + .\32xl\:focus\:-translate-y-3\/4:focus { + --tw-translate-y: -75%; + } + + .\32xl\:focus\:-translate-y-full:focus { + --tw-translate-y: -100%; + } + + .\32xl\:skew-x-0 { + --tw-skew-x: 0deg; + } + + .\32xl\:skew-x-1 { + --tw-skew-x: 1deg; + } + + .\32xl\:skew-x-2 { + --tw-skew-x: 2deg; + } + + .\32xl\:skew-x-3 { + --tw-skew-x: 3deg; + } + + .\32xl\:skew-x-6 { + --tw-skew-x: 6deg; + } + + .\32xl\:skew-x-12 { + --tw-skew-x: 12deg; + } + + .\32xl\:-skew-x-12 { + --tw-skew-x: -12deg; + } + + .\32xl\:-skew-x-6 { + --tw-skew-x: -6deg; + } + + .\32xl\:-skew-x-3 { + --tw-skew-x: -3deg; + } + + .\32xl\:-skew-x-2 { + --tw-skew-x: -2deg; + } + + .\32xl\:-skew-x-1 { + --tw-skew-x: -1deg; + } + + .\32xl\:skew-y-0 { + --tw-skew-y: 0deg; + } + + .\32xl\:skew-y-1 { + --tw-skew-y: 1deg; + } + + .\32xl\:skew-y-2 { + --tw-skew-y: 2deg; + } + + .\32xl\:skew-y-3 { + --tw-skew-y: 3deg; + } + + .\32xl\:skew-y-6 { + --tw-skew-y: 6deg; + } + + .\32xl\:skew-y-12 { + --tw-skew-y: 12deg; + } + + .\32xl\:-skew-y-12 { + --tw-skew-y: -12deg; + } + + .\32xl\:-skew-y-6 { + --tw-skew-y: -6deg; + } + + .\32xl\:-skew-y-3 { + --tw-skew-y: -3deg; + } + + .\32xl\:-skew-y-2 { + --tw-skew-y: -2deg; + } + + .\32xl\:-skew-y-1 { + --tw-skew-y: -1deg; + } + + .\32xl\:hover\:skew-x-0:hover { + --tw-skew-x: 0deg; + } + + .\32xl\:hover\:skew-x-1:hover { + --tw-skew-x: 1deg; + } + + .\32xl\:hover\:skew-x-2:hover { + --tw-skew-x: 2deg; + } + + .\32xl\:hover\:skew-x-3:hover { + --tw-skew-x: 3deg; + } + + .\32xl\:hover\:skew-x-6:hover { + --tw-skew-x: 6deg; + } + + .\32xl\:hover\:skew-x-12:hover { + --tw-skew-x: 12deg; + } + + .\32xl\:hover\:-skew-x-12:hover { + --tw-skew-x: -12deg; + } + + .\32xl\:hover\:-skew-x-6:hover { + --tw-skew-x: -6deg; + } + + .\32xl\:hover\:-skew-x-3:hover { + --tw-skew-x: -3deg; + } + + .\32xl\:hover\:-skew-x-2:hover { + --tw-skew-x: -2deg; + } + + .\32xl\:hover\:-skew-x-1:hover { + --tw-skew-x: -1deg; + } + + .\32xl\:hover\:skew-y-0:hover { + --tw-skew-y: 0deg; + } + + .\32xl\:hover\:skew-y-1:hover { + --tw-skew-y: 1deg; + } + + .\32xl\:hover\:skew-y-2:hover { + --tw-skew-y: 2deg; + } + + .\32xl\:hover\:skew-y-3:hover { + --tw-skew-y: 3deg; + } + + .\32xl\:hover\:skew-y-6:hover { + --tw-skew-y: 6deg; + } + + .\32xl\:hover\:skew-y-12:hover { + --tw-skew-y: 12deg; + } + + .\32xl\:hover\:-skew-y-12:hover { + --tw-skew-y: -12deg; + } + + .\32xl\:hover\:-skew-y-6:hover { + --tw-skew-y: -6deg; + } + + .\32xl\:hover\:-skew-y-3:hover { + --tw-skew-y: -3deg; + } + + .\32xl\:hover\:-skew-y-2:hover { + --tw-skew-y: -2deg; + } + + .\32xl\:hover\:-skew-y-1:hover { + --tw-skew-y: -1deg; + } + + .\32xl\:focus\:skew-x-0:focus { + --tw-skew-x: 0deg; + } + + .\32xl\:focus\:skew-x-1:focus { + --tw-skew-x: 1deg; + } + + .\32xl\:focus\:skew-x-2:focus { + --tw-skew-x: 2deg; + } + + .\32xl\:focus\:skew-x-3:focus { + --tw-skew-x: 3deg; + } + + .\32xl\:focus\:skew-x-6:focus { + --tw-skew-x: 6deg; + } + + .\32xl\:focus\:skew-x-12:focus { + --tw-skew-x: 12deg; + } + + .\32xl\:focus\:-skew-x-12:focus { + --tw-skew-x: -12deg; + } + + .\32xl\:focus\:-skew-x-6:focus { + --tw-skew-x: -6deg; + } + + .\32xl\:focus\:-skew-x-3:focus { + --tw-skew-x: -3deg; + } + + .\32xl\:focus\:-skew-x-2:focus { + --tw-skew-x: -2deg; + } + + .\32xl\:focus\:-skew-x-1:focus { + --tw-skew-x: -1deg; + } + + .\32xl\:focus\:skew-y-0:focus { + --tw-skew-y: 0deg; + } + + .\32xl\:focus\:skew-y-1:focus { + --tw-skew-y: 1deg; + } + + .\32xl\:focus\:skew-y-2:focus { + --tw-skew-y: 2deg; + } + + .\32xl\:focus\:skew-y-3:focus { + --tw-skew-y: 3deg; + } + + .\32xl\:focus\:skew-y-6:focus { + --tw-skew-y: 6deg; + } + + .\32xl\:focus\:skew-y-12:focus { + --tw-skew-y: 12deg; + } + + .\32xl\:focus\:-skew-y-12:focus { + --tw-skew-y: -12deg; + } + + .\32xl\:focus\:-skew-y-6:focus { + --tw-skew-y: -6deg; + } + + .\32xl\:focus\:-skew-y-3:focus { + --tw-skew-y: -3deg; + } + + .\32xl\:focus\:-skew-y-2:focus { + --tw-skew-y: -2deg; + } + + .\32xl\:focus\:-skew-y-1:focus { + --tw-skew-y: -1deg; + } + + .\32xl\:transition-none { + transition-property: none; + } + + .\32xl\:transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-shadow { + transition-property: box-shadow; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:transition-transform { + transition-property: transform; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; + } + + .\32xl\:ease-linear { + transition-timing-function: linear; + } + + .\32xl\:ease-in { + transition-timing-function: cubic-bezier(0.4, 0, 1, 1); + } + + .\32xl\:ease-out { + transition-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + + .\32xl\:ease-in-out { + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + } + + .\32xl\:duration-75 { + transition-duration: 75ms; + } + + .\32xl\:duration-100 { + transition-duration: 100ms; + } + + .\32xl\:duration-150 { + transition-duration: 150ms; + } + + .\32xl\:duration-200 { + transition-duration: 200ms; + } + + .\32xl\:duration-300 { + transition-duration: 300ms; + } + + .\32xl\:duration-500 { + transition-duration: 500ms; + } + + .\32xl\:duration-700 { + transition-duration: 700ms; + } + + .\32xl\:duration-1000 { + transition-duration: 1000ms; + } + + .\32xl\:delay-75 { + transition-delay: 75ms; + } + + .\32xl\:delay-100 { + transition-delay: 100ms; + } + + .\32xl\:delay-150 { + transition-delay: 150ms; + } + + .\32xl\:delay-200 { + transition-delay: 200ms; + } + + .\32xl\:delay-300 { + transition-delay: 300ms; + } + + .\32xl\:delay-500 { + transition-delay: 500ms; + } + + .\32xl\:delay-700 { + transition-delay: 700ms; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms; + } + + .\32xl\:animate-none { + -webkit-animation: none; + animation: none; + } + + .\32xl\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .\32xl\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .\32xl\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .\32xl\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} + } + + .\32xl\:delay-100 { + transition-delay: 100ms; + } + + .\32xl\:delay-150 { + transition-delay: 150ms; + } + + .\32xl\:delay-200 { + transition-delay: 200ms; + } + + .\32xl\:delay-300 { + transition-delay: 300ms; + } + + .\32xl\:delay-500 { + transition-delay: 500ms; + } + + .\32xl\:delay-700 { + transition-delay: 700ms; + } + + .\32xl\:delay-1000 { + transition-delay: 1000ms; + } + + .\32xl\:animate-none { + -webkit-animation: none; + animation: none; + } + + .\32xl\:animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; + } + + .\32xl\:animate-ping { + -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + } + + .\32xl\:animate-pulse { + -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + .\32xl\:animate-bounce { + -webkit-animation: bounce 1s infinite; + animation: bounce 1s infinite; + } +} \ No newline at end of file diff --git a/basicswap/static/css/style.css b/basicswap/static/css/style.css new file mode 100644 index 0000000..315996f --- /dev/null +++ b/basicswap/static/css/style.css @@ -0,0 +1,35 @@ + +.padded_row td +{ + padding-top:1.5em; +} + +.bold +{ + font-weight:bold; +} + +.monospace +{ + font-family:monospace; +} + +.floatright +{ + position:fixed; + top:50px; + right:18px; + margin: 0; + width:calc(33.33% - 25px); + z-index: 50; +} + +.error +{ + border: 1px solid red; +} + +.error_msg +{ + color:red; +} diff --git a/basicswap/static/images/Bid_Accepted.png b/basicswap/static/images/Bid_Accepted.png new file mode 100644 index 0000000000000000000000000000000000000000..fe841205a0a8f36cbf9187ae79f828f424da5f8a GIT binary patch literal 5901 zcmaJ^XIK;KwjN5TQUs)mhR{@6=nw_zO~4R3(nEj%Aqb%aq&JlolpGbEO zp*pi(^Qk5PK&OsYSBLAWtAo9~vCe1@6aWN_=NS82JU(Jqo;gA>nW>HLR;PP}0}%dl znr>#xeC9`hLliTMN@w(aIy1Hl=d*Q8-$e}5>Ezs>&%4s#qWbW@Rh+4{!uI9KlDgo) zovp2tFDK0_*(;}g_-OR2jc? zq61O@zyp6z4FZ%g0Gs=|${=90^zkGIFq(g{lmV;FoAYU{bLM!ZOrEdjYTlIiP-t^%DhHpCS)B&^B9Y=M~+c zLk6_>q<%`jH6YE_kouY1|LgATJm35qk7_jsj;qYhw2P4J^elc>ofQiGzHv}xeL$=At;}|Ul`~a1ZZ({M>^vM9T zi;NWh2ml_p9Ve-XkO8043l{*Od6m>}MW&NNjnlXloBWnC2oci#ETIp*39Nd<EliDnAGl-C(JQrw^O8B~!v{j3|c4eN`HXm$@Il&+{SSWSDHi((>I&+_jgK!d~T< zkZ!H|;(*|XiO4XLB%^cun1gkEtfu_~3vQtn4qD6!RO82m(RdLf=B2D7eXA%hE(+P8%5|`9>J>n0UKZFp%Z=U4SF3nqZ+-F0{>e zi7!{sR+y31?y-&l7R=Sux zKe&W(Y$>aZZ>Hd*MQV=nE2~5W6W>J>pj3ToFa)ro8+2|nxdN~eEZjx2ay~2HQIxZ2aIb|B<%yte!&69`p(D> z>9RajhDMIS5IyaGO2XVc<-J+A_qvanq6BUQE-E$pU$C@Wj z6QYYWvpe?~yDVyQV4$Quk>yB7&h;Cp;%st>d=2_>mU|Bt{ zh!t5C@BFebGi>v0NmmE19vFL$OKzTS(rspLQf(<7IvfffVh;OxdoQx^j$FrGzvqqf z?e+8UYThWElX+YEuJrAixeJfWGoPGqvK+;?2t6$6e(4;>n39Jjo=*dNQkS^5n+ECz z4+^qgXH8a&VTPu9l{$l;pBRW|@qDm(tF)uKzk6gcf46rbrzET7%{Rh|gsq>grR_<} zrQ0vFg>pxrnC^*pcV=69g6v_+N~j-wYZS`wmC2t5K83iE8{ww>QA;_MrgKUYcC7e6_C51c1Wy%c7B5GMs0_ZiB#5v^)YUgMfEH8UM z#RDR=Wgcpx{k8p0aN z8o~o&ziaNLv*1_-Xty3Lz8ig~^kBhp&f-MVJT}# zxTg^PgeAS^=29eB4KBfXd#S|JfS2`aR95tD&DQ*ce53062E7}PmUGNf4;7}a2dn>Z zjk&Gm`(B#%HbMlS%=M^||C@oC#>jMe|JdCzF~yYZlCN1n&AACDIKkA1#PT=0n2Cl%BpD&dUm`VvHufIFOb0vdE$bgYJ?XPkenAM?{k zu-|JTRKXjnUXC^dSnkb2+B9FY^T!!;_=`*0Aex*4(7OY{J+3`9X+Pof76{X?ZurTs ziHOL7q9S#X2y>a#(v%N9o|XGnjmQfQsZORlZt25!%tEhmq}r8xl@lw!S7|jY&zl?C z4c|M!W5&m)_3A%vZRl(iZg`d-S+>2wkyrNG>3KyJVBhbMtbpDD53DMm%09aVp8pF}$fXlrf1v(m%~` zw=uG5aZ&Hjy~%;w)~~la`tWUfCCO&D*=rwi*t)#i#ym2)KSlt z`Hf24zQM+I(#~M$54ZMVpD*9Ph}%5Hx9q&%o`_U-olZ!MX27-?g3f2I5$jGY_M?$sXV*Wyn|%DH@* zhk?80t5e_OxssX^*8YznX20bE!@-K9T{>u;;Xmwxl!d0zSg*2Uj- zxw#Lov{!su(Kivi)3DPt)75f0xcsDVjNsh2$X{p{_Y3V4FI4JLYr9NEDZEvNGwL&;SWYU z0ONJW27ntk1H2rN?kF7C5#@sRRD$fhZi9f)PD&7SSp%qnmpaN7trO^tG7dB}K?b@b z6`deAmBBXxU}p|6D4YX00OR550}D`s{N)#Rw*GT00RjI7!MQ6z{w2!701j5idZWPd z;!+K>Tsi>$Z0hN-Fk`g;Zi22|>aSj1uo<98lc+f!k zAidFEI5gH1{Kun%Bi0wE1UVD?uPiWL1_u9j?CJA&tO$`~L&|0iLOWX<(7Q7?dYYS3?PMb|UVC zc7iF$LFF{%6*VR0B~>LQH8s@KWK4xUKVKV0;GxElX2 z7pCrwa=>A|O|V#xe;NpP#p19&u2?Uyl(e`s_=-8&(+TVEbM;Sc|CWmKM*E?hw7jtx z@L$D&q5q2j8C9sJ6jVk|OHNDvOuV|9mb8qTswPxZRY6umT~iD4H`nREB>p#7{{Q4k zoQaY6)7k&k>3@#S#^=xS-=llB`SX1T{=1uYzd=v_K#v8(S)~;5L{_Bj4VnoyJ0y*^!N- z{l4CLx;li4pDG(Y!cwo~Wk6qVMj;B8lX0{id}l`Ym&qn>x^X4wDED>CNlM6Ie*|(_ zGM$y2`aY78`9J0)tBYLu8qt$@soan#P8=bc5#JNf{n|vE2(BxXU97w8%WV4an(CHD z^hI##1d2#T-Gf4Hj{*!_XH}xN)t!n^b}V{Tnwogo$yRREvDuBsL2#R~6ncUTdlz z3UpuH{1i75Bw|IC?!cA);gL$9PlPCN!kLQVDN7m-n~eT(DHZc}j3HBSv>jDTNw|As z)Q#>?_S!^=wV5#mo?Nz{sN77ZG=#TyHYU#q%S7+%d#)G|Iv zLP3P*MmzFwPT6PhbCr_ZG!@#Sn)nV$3E>~~3FK=2osK5j&owJGSwWTC>oLkU)}Jjl zD~1>ks?!V;(hdk$i5+H<$rIBcY@&W_@mg}|fcdf0=E6tc-?;PN3ns^ z>(K7;dXw1-(i&md+LbQ*z2pFh2H)E5hA$B3WO)Ynm^L0H8BsXNtY3TGPM|50=+e7J z5F(my0?3IDdxcP)n6GqQ`rHKC$;VYP@fFk&P_(Y8LdLC_fkdPbh-ND^(}SAxwpc}k z&oJ}0WoM)mGOCJAF#{=lv71vTBs68sK_ekg-*P!_Oey{GQUtwJ)DX+VF$*r0_Y(|M zmRe2Z{gb)ugS@anDN5mf8lEhDW`;tJvJzg0UhbvnNqYC#XY(F~Bb1#OSP=v3Pfc>J zL4y5_SEJNHNg&PF0c}^nXyVC5&de>(#3E;~$#9JmmCO_}h?BIKTQ#O9#1`p323=5oM9|^qiYF6~lg?yhPe&rLw2em)xsq$5vrF!Df;6pNBNB z!Kn^*-?e|=(s840E}k0eqPRW%s8~3~)+)?eXyWx-;d%9pd+r_*)u$%JM5_h5P-QMo zmtbb;*+H(4MQ50@*x0>1oEz`P^txkc1HLSEwdy@wTB}je=!@SewdwBswWrDOnmS;u z&|E1|t+eq~ORFgJw??;9yP+GMk>03RB6AAJtrukc&uU-nr0Yd2WUMAT+W4nB$(iNN z2v&Lx*5d7;+tR%WRkA_B0kHk;?1q&~FWj#aV|j|F=RjZZlxCiLZ+YxYdICd!z=P!j z^9P*Pl^764ToDqlsPl-IIGs}3H_EPlcmtLu7CX72Yq%pHh@DSyq6(%`A;~aG{_J}c z07r0zZ=4e}pl5!%3OLIk)>9^mct6S)kc*rNCg)$l{IwQ)eTF~eNO%nlHn@kpH3u4RJC2Lh)Ofqs628h1AaZ1`C?=?q&o^X zdk_f+8RoDqPlSl6_&watA2{R|;Tm3F4}(ATKdXRWI5HoT#SU)EFU#hnlYY45CuYFT zfRH0W)oNXM#o@E0aP;TO=u_Gq^)7X&3&uCc{VHriD6!NHJU1ys(VfC)yE<(2R8srP ztK_GHX(#biUorVi0<6h9P626;i*}5Mc<*G)mty!-9>Tjcf{JCDOU8Q?)AH&*t)+McPm(62xX>?+T<0kEW>yXG|EQ%!%5!aVxOM}mM6$boO}I|b=uxQ4%%}QwuDKoy+d7W}zH2ZmU;V0Hq}*b!w_IyfD3!rf^5|fd-X+i0cwx8) zWZV71Ws)SXz1=!k~8IpgtNV(CAm!;2l=B< zh}O~`Qlu_Py0XTJVNQddw%L8>g>hWs`BhLs%w?zAQul!J;{tYlK>haY? zm{SQob^jK2oIu_XS$EFEQ{1bUZ2k$wyMIi;iCq{OKqGAI&49l@_UDg6SJP0VQq4Z% Fe*oe_sV)Ej literal 0 HcmV?d00001 diff --git a/basicswap/static/images/New_Offer.png b/basicswap/static/images/New_Offer.png new file mode 100644 index 0000000000000000000000000000000000000000..270c6b2840a7cc8eb7d860e11e237212251ccd0d GIT binary patch literal 6589 zcmaJ^cRXC()*dYe!9;r5+y`*qW2(L zh#pa+M$IShecyY(KkoOP{X6IEz0UKj_3X9QANxe=XsM8sGLQlQ0CH8hBI5dO^XCTM zxPH1VrRW0yqzVoS3OcF^3M_6OXj=zo6ae5eldb1%oOD7fvv7iu_YDi6UD+_MW88Sf%&yHBiq@k|Oj#T=&%@9b>~!l!|MBV+-s^|#v*eF6aX z2(UhZn76VQcyG`Ee1O{oKRZ?T;_uJ~9Zn+vO9J22K3wkyw$6= zAq6A@0M1x{7#L7S4%j+Wl_3I5l_t&60jBbqN`ZhFJU}{^3Ol~sM}Vb4FyaAzYdavX zTn@}n*jkAfWbz)Of*;gG1n`PAj;EBf1O%nS9t;3jB=7+W_ihgouxJqE368aVE46TY zRu9JmwDzYArmBw#Q`e`AFnI6peOqE(YIlAIL(*}BY)MwYS*e+9x8dsq8bdb$0EW}i zwkrwQ`1Q4w#WmY?=iS3k`BzSRXs`_H&xNbT=lFyGkk;_-jK%8eB!OEu-rFZFPNk-R z8AE{m!l{|?EJ@xY(h=X&XspDA+`XKaIz3W%nMldVwmGa`HVH0A%lsBzM1PA8Jih*V zHS4v&qdQ~D~*ZT=!Larz4Y**dSo?gask1mP4d;EYV>ZfsJy$)Ej z8~Xu~pvc;rvP8A<6!Me##U)9SH#wj@OuJRvoyR4~bQ)bi06;M>nCGoL@y#~s@>Ythw!4k3 zboj^{igGvETctp-8!JIfq%ZHhkf+ygg-#LHz9nGDyOpsBs%aCFAYcDR^*DIbjqZl! zot*YNjbS8&@;$)YNLFaXEvwim@DPwLJ(duRgo`8w6|!tZQ0sy}^>`HGm%+)2F^}cW;%9qUAW;`ljVeOP!Bx5hbHK9n#sM0MqPj$%Y8&4OO!JB>2b+>;J^ zpI9W*LLVf%a<`S^Lbl4YbZ17|m_^{TO`VVtP-U1M=C8phTf_Um%R>c4?GpXai%OV;+B+gg&YiXo_J< zV9I)#zJaHK>;$%qO#ih34|A-c34I*j5Bqh|l=WG|yOVdu-Eg zZ_eyKam$v=evo|xb%CBdA!!h6&~13uF#BZqhs=n9u(R;fN;CIhvQvg_!)VQC%)mg;gSqml^4_gj$%!nd9Axu! z_GWca0Ab@K7%gH4x7BWE2(qs*I` z(9Hh#B^8+!onDzP3)D;0aol6vM|!R^LR%MGq+1zVH?}2@k;fdzF2}=n2bietPCmpu z^!LC#8Srv;Yuqec6zM4KEbZ7ZvSYM+>6v{XN>`*F-%pk5l}e}QQXEz6n(N!2vdXa2 zFjo8ds37xW=3K?J%lOv;=}!T#&o%io8GFq-q<7^H_fCwL+y|Dki!+Pc58~Ga%)QJ_ z%+H(dX;)`)=1dB@^vrgeerxLYvxLe>qt1pl2xPis@N<20!<&nm!3)yOY=M)3>4C%- zIp+`0`Y+>twJc)yX@6=FS>mQHWGXz%?I1w-trW3v*7A1-y`glX&rVI`2CJDI- zvquuTm2RK$)LMAX?m@;VO&>6u<`LtW-~gw_y~$g#VZ*=$P$0VKRAXb{Juu>%igQFg zvjcrP-DvyJW@?f%j#pK+sDfVYv>GKZ{XC2>rc-fUZIwPE|w=(O4 z>dWebeZqe!{Y<68+-4`)j$G-S>XeRL_QYRz&JfO8$*cXjn@Qi*HXhAGDqUmpf2 zoY{wID?jNHCecRlViV{SKd>EW8Y)iCmk&?7PxDD8XC-G9AjlnF)bM^0tmCTFw&mqb zB45F-x%4q6h4-DTu$_7y%+feN(-osU z4E7BYh$2O|O$XkW&+fkzD>(Meernclcvy$2mFBwNfxAM>)=#=cEf?Dq=VWWiN{^?{VNWzJ z(w)q7&6?~KhI3@;FgqG`7AL(2^XqYDdyQ^~;1jD^jym-U=}KvpK)1_9_#0F7ChDYr z+eoSsbEvubaCGA($)0(Sys8*M6zbsoVhdWFtcPU81bFPwqe-2+9QyEa1U{hv`iOXhY zW+Z25+P4`>S}d+AzCGL*X!sku>G^tn;d1F*ec1S7YLDzRdbp($TYBKJ`?~ZEw41G) zxp4?9{j=zzVrVvCw|=)_p}UDWo$EsGO6Oqo%(}aHMEgW$-T&%B-~@MY9wf-tnl zk5Mwl=%H;f-bfD=K;8yzgG^8uTl+d$ zOWJ^CWmu$qpw|vuP#7eOkBhUbC)7t8{Fh(o_56=n0L=0i1mh$P{+B3YO&t~mvy^P@fN1cW3dB?SZ_0uTt_HGxx18@VR=j{o_Fq zOV66E80^Z>xL3Qpghq}Jgl!vV$1dq`8s|7f1p3WYc)_swDl7glq*J6Q5t-0 z;kR+HfeMO4M3sdVAVT6oib6t4ijvBrFhyZ`B_#zh1&E@!;6GedS5FMm)f)8=*Wo{0 zq5qc)Rq#L|F=!8cG}`%}0_xbKF=$VFv>OXVm|vKM%gDji2JP+1{U^77OGSA&c%f{R zJOCPK7XeFZr$s}zndTBdfo9J*R6do&kqLxkj<+q%Io{gY?+a` z8LZOCoK)Nj0VM`Gs{*Tt*nuTnphzqANB#OytRXj?`J!rt5nS&_pc6B???Mf3#plOJ zfN0xZyw`gO#3O~r^Kom!oW6KTdwPHB24ZlG?+ba_NUD$i1z~!DTv~o5IP; zS3uc^N%l_;WC$R>btp-72C8w;Cx3~^1rk$Nvoy*lulKf+F8oSLM&-hc2Y@VNF z1Vm~Qh$TclRI_C=6faSG8}rp#1GIlr{r!x>Maa&!wbvV6%^m?AT1J`# zNeDigwmLXL*`W75+|U-h&j+j8u99Tx*{z8`ZJY54(!bFb-aSDZL%;%$*<(fSu65HY8R~y0UO8jX}edN5}SS(ct9OJR)*c@t9r4I>d=6)5* zdKG~YGb3Y$=nd-5?CJXKu=-8?=9}IMHh>5HqUXOHBX;ugTRg%iMvnod6D87oQpuxa zPt?Gnd$}Dl5^n8+#EQ?pa5xUdzvNOFXIhNV;62=8^0ktk-dwd)@Vv3wUJDp7+YW2k ze3`4ogiO-t8ggWAtepI;{| zfRM&%=a7}2`b`_Aoxcsu4UlL0JxNKdb+(vrt775D>KVZKDwk49W)P0WM};%s;%^j{ zNH^rDzMOU^?3hvi!Y13|7k8QfaxZa~hY^w=x7j<+EZ+3HKl5K0jV=Sq8gK-kDhP2RWRS{p(-0Udr0~! zG4#G^T*!WyamU3_s+|I1{PyqBS@O4ett1@~SVq%YyR+A;Xv*Tu4u26(>~updV1*}} zb==Ion3kHP)c*npTu_KsoRbbZXlS}LOZ$(2xE?^^eZv;2jA5{6Zic(sj+@rxl6-Zd7X4rtkx zoSUhBGF-Y=??o21^m$jlNMmVbObYOmXg&`sxN#9}aVG;$OMjZ8$geXOsstr%1lb zt~#T9$7L5v4qV|6$*~`AE*m=~5y^@scbCl`nkQTy{8+Yv^02PF@VReen({kL8(dvN z@Mus0Tyf`zl|OfEhFDh^YbDK9!*I0Pm^edzpOBI#G()|zLI$Unn^AXuv-|N%={uN7 zfPDkO{(Q+g8+((EA2*=(tm1`FN?N(EwDQ!dA^!tmZAa!W0kdDO13&q>Hq|R~w9zgP z37gRODQ{Y#G+i0Pd!hy;@zUs&3OlT7J!E>=(&JEz`!}h_M4*is!?Qgl!qS4jY-sTFY2oflc>bSm)WxxHrZF;chR2AISxm1Lz*`{>0IUJ7}(@s1ChVCP~qyp%b?GX-m0_dzA=V zJ>HNM(^aNulswz^72kp`g}&h@%v*ZSY`C@8zN~JhgXOd-f*>S%tINnGN^tSN^Xv12 zL1m<$5#{;_d#rII{s(Fjmqs;u!iwFNplangR!L+UXMcmp8H7VCd+Zk?nMpcDyJ$^~ zESt-er%^C4BF1}C9uZ~B-ujujKCe=yaO9(~!Y~8hQRVOaqrJ$!gQv6Wp`|AzJTFD* zXGq-_Gs;-qxfQ?TQXvAepEE%o^B!_{<9Df{d3#MGhcCM#S^Bh2IYe7Wt9JEAWoBlf zrCL2}5y26-Xy?(4pnjflg2dY$Yz1DiBQ3AOdTOq~VG04_R0$w%ix0%B59~)C&~@$< z$TW}n(q+(V!8+3|*W2@15X)7GZb^#$9pjD+m@!0rx}(FAslFEQq(mMlZBa9Ef~^3) z1V&`Me8rA^qv6q7637~^o_;iEMYll9enUw|zvku{!4KQgG8f53w!UWBafUT-$MLV~ zRe0c<1T|3;9F4MyiAN7`jnQf#(-K{~>qH9mbl;tvRLfnd^^5!k?+Y)af)OXAFsk+p z5N{{;e(P9ybBRRq*WTd^80+gMzO$N zA=F3aLEw=0d>06OdP2lSxxo(SP&&-YafGd9EbV3n{cG>n(1&olrwM0Btu^(wwfsg` zYHn(i1hZ79+0s`LWgjTXT_w+p5PkWY_oj3!&h~$jago)4akSqzo*%k`LgDIbzibC9HS=ub*?Mn!$S9%XUQxhvs8tRVWaSLx z4tz|?SvX!{Q%vT*xEuo6oMxsIZcgy!nOV2s; z6kb?3Z3^(R;zG1%{LHL9K(q#v&)aD+)Yy&i0l5=0w8^M!88y-MT8eZ|`*aokv* zC4fv(XttU_p&|N{a&oR*a!aBX8{t$FT7TKfQS76C1Z16)jiYtvRH2r?#Oq`fmTWgm z^|YJiV#}Pa46DmG(^jG(OM>~4B@R3q2o^9nZ+~>O9uNY#0j|;P;)<>Io6Y<5sa6VY z#SBzYEsth{OuqA*DW0IS4*&qSpXHs1Nt3rnhg#E!9NSGbjXRtw`DXW2-Nae%$i&J+ z><2>SeAF}7Mh+sf7}kIr7ZrVXSn{J{Qo8)r-Ux^;4S;?9IGgCQ9c56ua79VRSxYfP zGvqicLf?_gmSUfnrLlCn2bb9F$H>^PBPOPxCa>J0olX6dk~2VF;xbtSXZ~i7qFFnD z==|ei{On2|-FIUyD8()w$UHuOGIC~pN+a*aexm&$N-RQ4AM&zGD)ttJxO(%jXz->o zRTDvU>~COm=RQM!{;=?Bu4UvLE68w)}DrqTJ!Yo7n2ZCb)@Bjb+ literal 0 HcmV?d00001 diff --git a/basicswap/static/images/coins/Bitcoin.png b/basicswap/static/images/coins/Bitcoin.png new file mode 100644 index 0000000000000000000000000000000000000000..e5281d176bf90e7e6d2a981b029b2a03122fec42 GIT binary patch literal 8075 zcmaJ`Wmp{BmTfFpaDq$I1b2rH?k*iX5CTo(O(TuFdvFU9G(ds}0wGuk1oz-hkf4nQ zhsk~O?wk2Bck279>YP(+t-bfz>qmW6F}m6+1b8%f004kMO;r){=WhMiiSy{s)nz?h z9{|8puvbvfRZ~y^y0{^1?44i$fcJdfb1&o63kvC#3mB21{OnO(rc($2#9WEfM{H6= zoC2^6CnlBciHOECB!5DZt7_04I)$g27rkD<-fSxu8*LhAU?zUZxLDR0;EOsqxS6?W z-Ok;<9q}0@3ML_CP2MVU07yV0B*C+ci8`v?{cXYMPgGYify7&bUA9;~0KgH3k9Q!l zR^}G11_3|^xJ>arCGA~%2y4-0H39&W0jnU=ZG5yO2%wKwzmFWyM+K;T{?Qr_kOlxa z`S{C&0PhI^`)6v>Sb*7z)J00bY!O`r4j=&ykj<|06kYZU;FUoLgd4rH3s6ug3*yD> ztVRnq`6Q@<9^8fn@O*8YL?rtP5S%T~Jp=%XqXQHe$c8b1nivKA6CJA+7A_IZs%U`D z!SvxwjR_(0=JYWdual$Ib*A+$r#g8{N)BQh+zn7}W)3r%>NbYv$YTJ2=4$-wy|_%$ z_SVMQmd&;k>a3^e-th{-kD}%+HaDj+Tzb)JJvtmKUI69|0d^}_ z=0Xd&1*UjozE^QR;V$#FQ6szSw5I?~Mq$d(APvE?j5E{Ur9-IHp+_q}A*58Ir8X z)Stdix)UUL%$RY9o9aaXsEpL<)c%CsIOxn|#^@-#}#?>GQ}VnGOJtsM5_ujG}Tgt=eoTRSPyEgvb$ zK7QIMNi6?pBbW}akSartTE7!Ki`iI^44;gsMK;7&BT9;m0!tpvS7-XYmsmHC9nja(wZ zO!hiyp${k+dmG!TB9InRuZQsi-9z?sIU`N%_X78Eq%e_ra7K~iI86hCRPd*wvT==H z9!Nky>}zQ7xB#I|{G6p(e3a6w7-JgNUJB@@v4~-!2$bGf%<~CtXTBv0=P7zzFxfuN z%W&c@r_iJ%6=O|fg>sgC<_6Lh93$MYaDgs1P-?kO1B)-|RkyblxGu?9xsvseiGeAf zD;4XzRC}oaiPB{L;-r3#>JM(%>5J?c$ zt7^qg?MUrMT}IVJ&6lnD4r?+qyHB5gMvyk!Hj5|=VPMSpo74YE@&IW%INdNkFn#;I zzJa@e%#_c2eEkmwL?2!n2E0=?_^A7{0`~{Shp7sBgD(}L)guruNTTkjo<(uH#a-w% zl%PH`Lb)JPwOAk8^qo3^iQ>B;?ATa-+RYGSkJ~Xz%j!k_)xM@D)(x#EpP%M)1^4$h zl{U#Xd0Vc-XoTPER*xj+a@9weMhHgycrbWmc$=!Cv<7&lh&8&w}wm(I@DWz>H5p-6S z!ppElM@dU7d%=a0?vkF3c8=jR$2T@D;|-I@p`kwR#md>r{{7byQ@M`$mhE$`3%3ao zrAoOy>T#lRy&3Zv{)1QGfW zkGZV*)BNzhh3*%tZG(QVz|vB%>yaG{>F?6$Z++iJwZCfztw^;q2TliO2V&pm-#oh> zyi2_7So1ldIM&8`h4vL~6RjKg6oZFirA0aujEUI1usfN^@uE6HfH1ic@qmqdj#t z+w0@RiuljZ792jgdD>PwI6<7C`#H_Q&F`B- zyrV9ajx$M-WKVGqVm7*GyQN}&x}$G9y%EaYc%z?zgjR1Z7Ja7N+8G(l_mVUbF-h_l zkH{j;te4pg1Ip|2QR!@!Icw3AorLE^=qR-pB^2q^H8rbCrflUIrvDaSdKRE?Z5OGd z?D1U)R|mr7lT4lRnfX-9P;q*>a&*phjz=ObH!ZgqLSUcKz%|3)#NMQ1!^M?Ku;H@> zAD~T*8o1bCzH&cZc;XbHIbPfVsn#W=(Bv!U@_s?}!n;|uP1W>=(2C9d?iDkBD20Dp zQmt-t?Z??>Z0eN3g)=ylwQ07=8zU^Z~LQ(fI+*#`iwi>bz_LZiG$DL$!kd1 zL}{r4SE!M2dPQ3QpmX(^>1XH@%XDi4ltbp!3&S8z%5;lLm&)?$%Ub2;t#u=9iz)we zANc(IvU=0N!Jg_~$)0oNg-J(^dYgmX)L7&ZK^5(B!X~W+Tzwf?=<9I)dbnYDU>HNh zQsm&p(5K3UlS0wr-@bW4=7WZJRUew#=UC^bJC?lsP6@;4pFCSerR}#ia(Np$wkZXi zJ5L;jE+x`f(YADK1uiwKcLa=AogGvg9k>E)yOlg zy=UX7$)Ib8&MEhq%Nbttw?1vC@B6e(&a6vx%`7eFm!7{5D829wH5bi&6TNG0+vo3g zv9F1CgBtGZV4d*Q%U7MRM!%U5p$KuK^6%3gCZpCSREAWhn3b6m67v`tX$ffBPOL{# z*UIY4$VLYO4Ig~=+&^ru+^yeej2hq09^qfbjdoP~RGhk@K2+3zdzpI~TSt7Pj^Eu@ zjVuJ9no%t)y={!y?6Uf0z+L_$>+JsTo%*w9eBPEWd;+}ue^vE2P)qCohr;3iLAxU% zu>Z;T{}guD_i=&oL169(4>#za-q|q!70Lyy;0CiqBHZ*52&ca{Qr8ZFM7Y}_T!4Z? zyh1>BBYS6SgqJ(VzX)1dU^QoVq@^Z*L8jlj9eX6H=5{7F8A#5KvN( zkW*F`SC$tSmy-|{mf%w1yCLAf zf7J}O|L0sJ{!#DWTV76tJ8lk{jtwq!~ay2Jk}aQtNaZj|L>v@d#@UlS zrkcmk+216v<(ykDrFz#t9q;Dm&5C}?)}Gp@E{vvVE=GvnMI4Sr9x3-yXeiF-_ulf0 z8-t~3oP9Z+Bog6+@$UgZg5c zeD66c`7U8p&&Zi~lNFtl5e@im|0+uCoeXCs7Zy(PcE0`nTa4hGZ9|9b{uW$g&D!I% z6N<&PCd!VKIzMsrls2cxhn>L@d|sLy#AD8;&j(r1xaXS}OV>B?@Na0uo9#RIPfkCC zdVQ6u2$N_IoUNQrhtcBOR*g7Fv!Q*4tG`;yRfnG|!AwVV3k#$ZsIlkM*$}=g(7Df; z(Wm1Q%UUx=*tQY|G$~bu3KA)sTll^u6p>99#98e&au$OLWKq0SMPJ(t$$c+> zdo-Q-Bl=AH!h~)gd?z8dqX2f5M{R??yKmZC+^HXr1C+CMitqdm58hJ`1=kwPoF8Ndwevz-@I;xMqVxAeCAG$+-Yp-*8xhklOM$i_dZ^zi5HpR}Z=Ut}Y(C$3 z*^<84)UNP4jsdi5FJhj(8@|~YI&Uc#z!rn-*xBN)EfU7&TXZwJ_@aiff$iQFVU$Q9 z{gw_jy!k!~BD{GPMJQ0N{&qn+?#a6jtR4TbWm$q4&5Y!@QN*FOw%FD&kgN~ zWeaWPZA+`e{qU7HFG_m81&dH%F@m5|%^-T`38h-l{d$@+3i1I@mpNswQ*E2B?pU zhk95e=`dxZqOsAi53{g?mF%1EgE!4$RB29h<*FC}03Q0F}h>5thR~z-X+F7LOrBx4N zht?$UE_&mQo;mI?C>?xVfqL~ud8~;e8eHWDMTK;6(&?*JTdDfEUrzOiNvBt6{6_EIu(AOG` z%0Z2aZoydg+O@YEot&kUUyG_)OWj^t#h7Wca2P;i-hzRREQ36P*>8F}SBu-@GRpxm z4j~SAV!onjwzNjZIRtv8o~!N7V-`X!9GlPk8!r>P1<9UKo+Vm@HCBQGR%lP$jbBR4 zB}wE1xaKIwi%#(Ht^+WJs(?#hjXKY`4L3pb>yf@Ap^etx9?HV>ELmx_1n-h{!|3$1 zc1vEUapXJ_98>+y=6CeDV1TeGy}(Wf?p~9a1G^IbL?z$5Oo}DI{&;`}65^%!?pSh+ z`C|vhZxpnK=>m>Q-a82jp>>Q}brPGrp4M#Y!7XfCLc8`;Hw??w<=R&9l*?gcUeOuk zxV%0nIq;5+C&SZkG!5tKdH6w*{m!eH!pt=-#A2>vT zu1G0C?#7Bi#IPSZ$Qjk~cI@E>Oq4p_o|x7uX?0afoC%AT`COZFP@5Ii*W`eXemOaA zGSC16xH44FX;M^4zNE<$?sCU$O}9WNQJ!IjLz4?-eO6^p21UnIwSl!T7p-zc$JX;M# zVfuHxzVH$>(4!h*5R5GVHTcSys#`i*Udn}{sYl-VfPL18x8f(I;-eA|8Gt>O+L7@& zlG$pCsUJxQGg*iVziFW9;cJ)Z^uR}YtzhvqArv5=p_6_ z;OU`1@LZ`J@{Q3rH1L2SytTP0<=l!mGUE{*R6LBNh==HA%8y@ap2$&ySp&kkBXvhD z!o|vz&X2FFEilA2jB3yRFg3MhQ7o{H2si#>9re%Fu9z_liDmxVmcQO4TIRvjK2RTy z@(S&D(6c^AsqZL#3aW2Ewa07!LN}eQ)9-X=5`D)(CKs^?!uPAvV#kcWpks#bk(IPv z;9Jd&afO=C8Begn#2z|F;T#5ie@uQN-<)g3G_nb5>j&#P@8l=cin(tkf7Zm3` zYnhQ51Z{c&%oWd389o((GJ;=1>D=!X-r3#qnJH`>0M!TUN-vo*3Id0gZ_}BI4TX_L zx@OrO>+e=y+56O{2%bUuIU9L8Ko3Hb?9FTUzaACte%LU*q%*S=>p$t+Nbu?CaH^d$ z$66J{Q^^tea@STv2GX52+{~5Q_*@_TB$I5guW)ri2eR73Rg4z}naq_*^zK!gH09AZ ztwTRC(wMr;mR#9mW~sS$-=ndhlPUjzkJ^h$$ItvZps2~gR27I}j|gG|O9*WeuD5JX zvC-F|yUo&s8Nldk7HQeNL>phF-DO>6W%VRyT3B-W9WG}m768gizJpw1cHR^a%l{3 zlE-Y1Gzw*FN(M*}I^9L_f_+Ri>B0NaF)%IDPhqa565mBZp2IC4AMAkP%vNp9Hj{v!AqH{B4 zNb=BvP6*8$gz6TP4MUFAN@nSBlU52IvPgBwzJ1A&fdLms@4tC0TYl*%csRU#-u#g|Ql8K0mbG~VIJ>%Ol#o-Pp*VPd3LfpNNbslOZ0rd*`A`n?p*r?Qcc^tn4jhv2PJVE^)s|AvSO zpfsFV7F$=#^PhjIfeEx4SL6P?8#S$fh)-P@HVzbdX-j%a-tFbe^a!6d-$Tc;LF?g{ zf#B=??;_mpMp9X;d{5DdU6U_$AY_JL!*KQqO2kmi0T#7Yy)TVgD;YUM!{(*RkVa%mesUkPcF!pCXRGitKS9d&2?gyLcrE&>2tpmJRnjnz1 zN&lPvyb_eR@}YoEGtB9p#2zI{sKHZDdiqFnpCATvL#bYp9ziOx*4`C*@X)5%Zi{;Q zP*au~w3(^8@^Eu$;*Ai(dig>=&qNkty`r>GzA z9lOwWoSrIWm{FC8?Tcz?jr!|+^PSk8$+{Wq=_j)7Kf+^W?S>rmXK+x5#DYY)c=jdQ>` zl(%{4dgIgmwV`Wf!l$>_jR;3$H0;QcrP1n>r0Od2ViMDJ7Ts$b4RMrpGyVk_o9HY= zpmd3r-k&BpNKI|!viSPkJ$c*53K+y+a3UFe^47aKg z%&2$aFU5aPct;;Mx8LoZ8AX|Rx|K(=iu9 zsk=?aIr271YQ7P};2z{oPiN+CQY35`YUhkSyWwUw!c+MA?ku1~!OULlp&ni%`M^1E z9ve&Xgi}fc?H-wmP?4bq&xUlPxq6zM^xnG>ul{k#A}sUHF8! z4i6^Z?uk2n@iB^uigvsM3rIL$=Mx#DS~s+v`zZbW6*hA?W{puv*GyjF}x$!e)Parxv)wC zu9dd?)!8aYOv?c3=s>VMLGxQHSs713D7yaL#MB?i1 cIsg~|Nl(Kq#bv_3ezF79l(ZGA z`QGz>_m6w-tTi(~+0V0e)|%P#PW`n!9yS#=006*KRFHu_-L3vQG0~r{F008}001_` z4gyhEgg}5UZg6WmM;HL$Gn=jHt(SQDOk(L0MxY}-eN>g|7zzL}RABxj)XyhO0GNjp z5=;Jwh{Dz(B_qmG(C&Wo8(SeeYBl#ogN@YtD1&HiBjE$O`Qq9@zr+3g+o{`@t*ouP zVc!vg5F%pc_|1HKfCw}~3_ML2r>4-|*BXLMrm&0(B-|Y6v_bm;034zC`UH7=eRYTQ z1r9(4xcuf~B<@{#3~N$n)&&6L0m~rbEgU2S6!4Qv>nADTCk5cEX0;VIAPE3)^bL>( z0m|?IduNIgXn^U`#CdYSbUsZfCLjh0kp4oR5m~YsV5S`k-gl6Lt4=QUa@)z0!cGKNV+t~AOI+g41my*450v3P;z<3+m=gBT_PG3kO1ui$wR5i zCr8Vx^sAkYRnq3!7UEOa>B#EfkeuTmXRTdaUC?_!VMnbA4sg zddu_`5C!x0=LL4UmT(DDHp6+rlUV`CDf zYk)oKcOC63d?!hplc)Yu>^TiK4$eN4MP4h18ZSfNm%K{6 z9n5!3mvWDl=#2-cc&pa_x(=guz_C5(00}u7UvJzCAQ^PZ`GE>29zbX#z~_4j03^0u z$4Rmy0ftfw*8qT)KNLnKN#rU$m;iuGZYbMVDGb~W(u#Kctd8d`?c~Vj=rWSHjO}8C z(&+0UG}w6*DN>YL?cizD+OH^7xkMQ&gf$(!!gyQD#73dJF68KD6giy~EpM?9MFFa|MBfkV4>g6sZR2$4|FHmGe`J~fx%QS{cb0#p$qQD;w6rFOt)VVbyOGyMg zGnj@lpFsu+ISYP|X4u)-UD|SQdo*D!gwe{Tj;4+~{K44X+73JO#>IP!7uKs_@q*HU z(x0-JqMnjFUF8$nuhjIPT0B#H)af>91Zi+>J+=$B0J8Xg;$(2LPI6H4R+*NzyY{Q! zzGXOC<=O=0COUzi|k(n%|VftabVSi2(&R3jOllGsjKL>q&IqNt3eb!>%ZU5Q+?(CtbOSWV- zNA@|`34G~^)g;uU(G<}%=Q*+?@yl}8cN^=x{~UjNVNCwq>8#+KeCKfTaE$IHj{v3+ zg3^&!*z#x)Vfn`)&8}hWD14=aXu!59zT387OtFBaf%zcPW=+tCT*A5nPGeCaun3!X z5Hq*1aDsCu4NZz7I&T^wzy5aO!Q4|TWQs*vzT)x zd7OUEbsH|X4)~jaCB$Jj!`mnlJrc+t{XRy1|MVTSB>tTtXfh~02;(m2R`h1zKJKb* z#rNdd@oO|Qqz3EzbZ%S;GHF~aJbgO1M0h*-3H7xl z|GW)H#u!;YW;U4t^$pJ;vkL7bQS93h%q7Ag_@`@??ZG?`pxXy5jBxNOK6+rRqQfk)1m$3U7QW*L)D6}dVOzKkybJTqvtBr{L8(mu3L{cWfd%toGUTH#VrQhD`Nu3>Xk_qFNofOB7`+1W*< z`u_c0h26qk=ZZ`Hwl7Mp_ENt`-yY$8raq3@pf+_3<+&3Jo ztC%~<6Dqjy%MLak(7FFyUjKcDd3LgG!Q1~7KkPY~=;C40UP~>zkFG{sZLNT-oV3&=|5cq87euj6g zivb&cr_@FV%hIO+|26eLdBa`vT|-Oh!S&~uy9&PS7<9;k&TQfqh-EN{=(uUD2__ zU%@x_?Z4fpuBNz*Kl-*F_UuvDJ2NlPG%z)tUwK{ZlY3(ysLUJt#rb@>`#yWWgKRF#rIC*-lH(Lr+x&YzcSbGXG14%g4#(2@L>G`E0zdWeIbjQt-koLv4(>+JrYNIk`j+sE96o0p5{FR%U)R8{@|i#j>|SK8eJ z3j1Gs|DVL}TD~qYZYazh?&)UvlsjvNzf`$^A#N~p54f8a9Pao}Ak}T*9&mSCxC@Yv zpNk*(Lf6jO3hwRB`ZqvT6|Cs&?qTk12~(622R%`6+1Xiv1^HeI$?)#2BE!ZX>nGF#l&Yg4uz_S{ z04P$SG?^q<@c4XI&GEpwdVX-D%4`#c=q??rO+I3#-{yRr1%yh*~95k}D> z@lgp`hqR{wh8@2~prhYFWY)~w(1{;qu>jIXja#K};7MZ3E^f~gVuW?)06NPA7B2%52h=tZhIInv1 zfY&_+2uWaqQC?^Zb)*YQ>iTR|ZvbDRGqYf>8JIN0#Y=_r9v2 z5oR?2gE1m^NuUTkM^c3!Qjf?<=X^S5`eGfSZecG#D{Nc9s zZ`{M-&`EcnMVJcaAfm3xtJB=$5lFj8=Y|=lnb1On#Ky;;%GiW70UmW! zg&j*$EP;X7pZ)3Xnf5Z7S6Cry!A#L+sTDd~FO@-y?f3#@iQF%k z%-oSsy7cc@S=OiZv?4Rgcw8jTDLd1yK(AZuS+}=F19}OB>suuT}>d zf9NnswfxLhP7CePGb5}IKv{yM?sa8^sZKZ)N}FbOy8=<+XISEC1q)p~S^ZL;9H`PN zs(%#ZUv)ylb7>IkQlp$%^cU0Q;qHL9BCc)oq#`v7w}G~!$JRT_z0x{A7G8WgWV*&* z|72&oSk_EVM2H-zhTj=>S=Z5(Ip4^aZ45bDi3~z*Y(cAvS{ZPsSm8K}od`G{b=ajv zQl_43)t!&W38g7Z2S=WLD$n(9>5x76nQv%l>TT^{Bv;G}GmKxI)tt#fI~OEsILvV{ zHsufY;$$pia48gx47oa`NrANwx@?-4H?@`5+YHxhGhXL^=#LMJX?X==r#}X63ta(XD2Ng2%&7)n0+RH*HARIB#z`S>ThlhnSVt$J_%G45%_X{T|aFW z0H1w3g-OXxSZB8rf{U*cBE^_VlDj+7N=>s=4|oj!tvBeqhTM%!BFRRhaCUw5uTctkA3B<1dj3A}>=0VV-yk&^)6&g|)G`WH z%9*<%f!H-_DXkdvHX$?8(9x2aXqLSX)LbS{0lz8Nk`uD&%GglNsnmRk{5CjoUR1_I zWQ)D)7o^D114qN>R(^%VtJyY5A3pPPOg#uIDO4r8tEQ=h#a$QaYoJ>F+V9l5c?>c! zB}7AIu;R`c%;uo!DoB?vl5+D}PVm^a(T)1POJDDs85M_PrFY;^Glm*O-sa<4a8ky^ z3;l_v9wBqILX8=l(pMpR;g;1MpDsAo5w#m7aT<%)%L@3FhGGMmo)N3|Jn1N^?3$r? z866qc3&rx)xf$FcX)|n&t_ZI`1>s37SnS~;m>Hj6`U!Z~=Xuk{QK?t%$OyJSOQhEH zH6F3T4F=?C+X0VBc^2-Xq+4hN5`^+RUw3NW?VL$sd(jE+r!{YY1PRg@HRM+C^A&>u zr66XlP*0{COPqoD812b;K5t#ljBS^94!ic3io#?3xbZIOI09t&M7sq0K8tjcd~ea1 zLz|<3uw8^w^WxXe%m(OYrP66ibBpwh{hDO)`C6a z5y~8yUBiLJxhB3_NG0M42@^!j!2{%yK7551yHf*vtY;5-931lQ^>!Jz-Q%&bnl49I zfC;S#Af`+Ss&hQ`{R(1d58CPDBtqIWPRI7F)-PTD@b2kB>rZI+{buPzYvh z(}mg;cbLDk@j7E^KSOmPUp+Go+#4NCR6Rh{23?iI+oU46>H3BycG~uQRG=JPqQyC$ zgwmw7rjHks_VG)$OBwe@)Hgn&OEkhx{Z>szU5lceVFMm->ll{DE;;v0Zi#PHm92j0 z-SWwptPeq(8-YBn66jLQx(q5MCGq)UeI*W+8QY}wjYSH2-aECcbR|=>Gh=udvFD<- zt*K(b7muK#ARe*>?ceWA5;ZJ$lI!ET6xax;a4t-+GDfzpk;92ajcuT@5=Zt2vCPS% zv)_wx>hiJf_BQW%ymdHH1G|LkQH*O$5Y>+xCqid=`ekgy4jL64j*9Jv!M5~9Gtk5B zAQu0`KVeznFE2g1=5GDWUKtqfTVIW5~8QJw_P z6q0$@U&t&=ykve0 zKktmMr0-Rc*y=KRzuv!2n2^Qw_CzP|gJ=0>%r>cC9;axWNTa*4r4%jvDbKh+v9_yC zbWg;djg4h~-$9l?A{UMA3^cu_Z23L5F;uY-IFD6}VI-z1Y&h?`lMy%y?{%TDIgPO$ zFFVQFG6|%s+XKHHo@1R3#m`du74)#SUwPI(Qbz1|omVfx~D zNd;O(C`~?~_Kwo^j@Ah*3k@uwSMd-nI{?%gda_F2FF^sbVB@L+qw+OW*3MZ3F z%C1@Wqu+$+S^LN{CW#W`*xVz@IB``7rRHfp5HPs`WOX`6hRL6~LG`K!4G$ptu>Jkd zuVtp-(9MQ^o}N)Xpym!WlIlx3Z!Z+Lf-lAkTDEAg;p`%VrTnJrsE@J)_VimV`hqU^ zd~oc0_K*68TCS%>!3)@?w9m)x5_bY;(omT4eNPc@6m{Y4s2 z%WYC%$-jJR*5Avq#E1!QWd%GJt_`2fnYVs$i4w9Wr?%>lVx3-->@L2S?$-ag9WSaR z#ogkH*=Zg)&MfGL#`5+WmVeRjrg-2HMM@VHe;oPF>Lb)1*8gpGl}DT?>>_z66d6KE zX*kwvSCMJdp1_B+DLG`R!A7sJ_(x(qoJ~e#w5Zu@ zsiG81^FTfeC9-NJU#Amzo;hZ&`O(x6f#hIGOYVm2xRu3quOsvAG^r4Q`r`Gd0<8`w zR!##ng1CP+`$I#%j3gi3y;Vx607NJa{nb(ck-pG%2(FeOs=cL(>O2X#cBU~`$AhZI z3)FB3?rdOL>j~#XsMnRDe^Z`0F%h744`}n&bZchkFrEnA($V}+hAOC)wrlsJ~!d_nwam_w+`eM$M%Adrnwv!ZYj#Z_>=-0+QI-fXiyb-CSUJ3;YVoK4I zb=hZ_;L)!eOi^={i-&Vog~9qfEn1vfj$7(K-cL`6So!CF;n`X9nH&F_6sH5=_(apNNVa@r1+(`4Me<*lpO}IP%vqnkp5&H z?o4!jS-e?(FZ!`aUGR=lpap691XcE&ja2c1R^)5${=@}AHgZ2pU73*hHVH7VWf!BU z4&S2Tq8gN-ls_Dd$~84r%kMf(e8&8Xd11J@th*ahnl9lav1YgVLdaUk#qidF@C-@1 z|1{&vYSr6csrz+)_q3tTn@nLl7A&|10zo=+1xhCb9|q2eZLxpCkg-|R@?n1BUflX0 z=6>amFn5^b8X1P;@3FIadD@kcl1(Jg7`MfR4GEE*XTOj=e6MtZ<0kFW@Z;GeL}}3k znkKwEFk@}^s~nAJiPfuBV_Qcu|8D)+U8|Fwu3~>MjSmfW(-&Rr3oNbaUBoYfl>CeG zLS<++;!QZppCNer!D4K0Gf?3zZ~RtL9W3)Em1)WVw&Lll&h}jIyI?2uyF#HBH*oPq z)Vz)kWN+RK2aKB)lpNwn_Ux7>D1+miHW6lA^SS07;2K2$eTqjqi29Wu_5?6#@3x2` zgV6>~#CAYlC#0L!^Re9fYpO%_h-7!`h(Vv>(Icm@9Kp0qrA@+oXxq|<&mC%jVcjE= z#;)~Q<@VaGv?S5r=ruGjE`DyPyJ zRm@&TRgkH|1y^2xXj+dD<`$SU8hHh5%R!fRfI)!3Ne+0nb;cew&fcBAq^?RMxo(tH zSAA^5kfRx`8lf@L`cmz;16%QDI?qJpRbjU|jh0#ME&n>2wR9&39`adgG3w9c(?tCN&(2Xbh-%jf4KdtyQwJqTBcIk?9KlH`$zT% literal 0 HcmV?d00001 diff --git a/basicswap/static/images/coins/Monero.png b/basicswap/static/images/coins/Monero.png new file mode 100644 index 0000000000000000000000000000000000000000..db089faba39539d6c55f9f09e7157227223b2a4f GIT binary patch literal 7625 zcmaKQby!qg_x8};4GKd_!_bU?Ll2E~h%gKd!;COA(j}lE-O@;dA|frFA}Ny6-Sv=u z`261I{e6FY&v*89&RKh(b>D04weRcN`#P_5wN*(783_RZ0Erq@N$>t`^XJCLy?>&X zlMMg>LPbYKMO`&TMIg!zY3Jx-3jlb}Wb1pGBwoh~?uQ zfUbFRgHeqHU;B81Z_5K0$*%YCs=7pho|r4Iv;2 z0C4f~S6~B_kpOm2)#Pvh)1`@Xbb#sn2c`Ic*BF3wZdDFUNE5)yFj$Wtv%Le5TLEDc z#BQ&`2r{h~QN;{u!2x)_F^MOGSOJ3475Ik$Kq*XsA~V%67Elu_S9q-LSE(f`ya9>< zXdg@-PSqF_rEW<6&ggY~_-mPUxx=Ma0Y=9|Zbz`nmX(^xP6ge-()>mY05D#Te!Y`= z62Gy&y0mV$;c{@=oqy+ih-8yvJzBhLj>W_VkZX?|%vi3iO<|#WF={;8oJ-9CGe!W1 z#Y+p(S%O?M!tcJ9F+Nf^5aygb-9DLz4+x2f_BgHcT7*|(1I85m-c{t49pl(lQB;KB;Z6KmXYW!fZSe8 z#ODG4NNl@|gYaPhhEoey0D$IA`e*Nx=rnuq0RW}kVBQ*eJmRm^744*1UmrHN(_zAJ zl_10%?K0#FxT`@A2=nMu%M}dNH%^^J`3JK(cxOr=XB6F zM-X7k_u*5)Siw;g)^DcSzTwlQzrkjMLB$e+3V~Zu)KA&E``ijKOBI~nT0q&41>C5m zUq6Ff#n1KuMWSz_n^i$c!5^MtO<;OJzPx8)jPA*GA4Q9iSp=ozJC8EfG0O(k=a-CX zY6((O(Z>OnA&q-2lyPAF+o(j z_|L=0J6uBI<5f*GO%&gA?y}cWHsTu-goc4S9gGBG`V)-5&a9R_#c8QfT?dk z$CJhDBwY7*u70KlcSkL266AB}6(&)ti`za~!!CL!qL7|j_H?*3X9B-03jEGY4Uy}q zE2JM;N+srz!8x2st2kIFP%!yD!_nUH!a-;Y-AFJW%B-CFJ$1}^6K`u{EA-Thm?VNE zv=?g4&EU-7$52B5nL#LBvlwSQHNDS3_=gBnx_ug18q&~&_ngm_d1_hEYIz%S z1t<9s5w4OO0WC0qf9_#;%}U!NVtZtwFy&^1wZre6re$sZ;c{2g6X%-AQ^-$KU(vnH zuEOrEUH1BmVGPoq+Fys#KeN=ov3?`@<|lw9@I;_?%Bj+>GN4j&#&@Q5#(K|fk9Kco z=D-7$4aw%uJ_94b7ajzS5{*wA!y9KkMz-a~;X6KC1ZM+hq+9c&s%MDPf-}19gQ73@+FnSoa^qykSq48~(L&2z8!J`JQ{Yd*2ac?>~y9(q3 z>k6?2+c{?$n6;zGY++Yn_i8K8aFTO|UE^roIC^NPkAJRWx}tygjr3%ea}KQaXY=gM z>+mAwtZwxfiJ0D$nH2v)oD{8;i;6TOIU^sVGov3BYE#d4_;(Of#xA-{#+k&K;LO4L z_m!EIU7neUMe1ehIG!<{Gkw|AZ4m&DxE%}B)Y`)o$p}s8smQB*r)Nc zg3PAOxyql2iTNSf?w94)T7sEO{T7|F2lA(f7beRuhE}pmGD|v6;x~kzdpX z^D&DnXG$2+H``_Yt7Xv73M?mUd-ZJ#ORh%_^PTUz$kyUkwnf=i_JFB?^Z>k@oa@I| zgST;iwJrG^(;jK#SYdp{Si@)uW(@v_<&4FGosM0ECyw(PrwLbxSdK=4n1IBT#Vrxp zPIt_72^XES=g%0W8Nkn`F=M(C9^%quo}zdYF@nEH9)K*q)Z7}X$B+7@>Jrt!;>eIr zclnZrtL&HVC$lsz;hLibb$V60q_mns@ACL?xpe<0d3DHHnyX{MMq7YjD zmiQXohMJGl4c?|lzu4N8n`qf%^y$0=K^A(AHr|ehV=o6C20x_S>Mon;86G?N%pJec z3mq#eQsfIU7E3No>K}BiIyL(Or-3Eg7#=vKPMRA9^3o++R-h{0SN&C^(y+d4tZg~z zf98XjnORW(Jg~O|-6`C0t++64t5$DulArt@aY$0hbo6?S$r7QyfX?%EI(su*H#{(m zB@PqcGast2m_5#uC^+}c4zw6Fx~(k#-1?JiW~y!8%kP9V^dZgTg@dHs=1+Xy#?CFu zFV9@Z_Cx057_FHa+tvf-8&th?x^v?Eiu~}-l@E5D&`6iL>bABI1PDEe*UV5bYArJe zIg`1U;q?h+#!K2EzxMUfVzIy9itc9Kx6ZlF;l=d8&u92MP#?ZAaGOVkKmj6GHm~Ji zGqxc6;q!;8t)G7f9Dr8f9=+mm#yPp!+_FcPt09RiB{n5F+1gKJC(`G9E;Mh_oh_bP zwAd?-~rHqX*-GS5EDd?mzzeA!zZ=r{$n$m+7-B*ZhM9&c?I9JkR&&ya@L-=PZ2VysK|o zXKuIguE@3n>+Wi8+Y!J1vTC;)=`w2Ybu1{ml!$xBmt>fK|9N`{ZCRRTDm|*q?;{JQV=8n z7Zw%w(T_J8yJe-gVJ_@Hcs^laUc9&YgawXmTB@~Z=k5$l;7%f7L&x*ItKN|SKwg6~ zFQu@s%zy(wKBE4H!q5O3R>oTxsWhn(QctZ!X@*gnQBI>v(cFQ*7~&qbyq#baxf~%pOiAvAK1<94%A?kJ(lX(OC7oNX5k=Elc)BPOPCFl z`NkJF`k|5d-6fm99jOhM4dDVy+#a{7XqycD*;EzYffvm0fg83P{SSY{nHvWwc7atIo`W+~_?lEnYR2S4l=W$X0zIbKA-tnmF~0 zrFI=s4eTRq!6PAOS3fGC;6*Tt89lAgdVVE1gT^0eT{ZH{!b_lxD?UCWQDEB)h|=f71)LDj8Tw33|QAgk!ctgMKC&$yGEa;@|ga36GN)@cH5)atDLf=rAFg`!Pu=p{7{YO2jLL9%4j}A=Pt6 zgtx2*t;-4p7X>GRlqnt8Do|%NQ>+5Bo+%OhUt&fmZ~$t2F+$R5!Pa|WIw8G z1ZW;rk{nJ2)9)-0P!P@m6Y>p$$sq-M9ko1)_z@Y*eO?2uKP?Z(W8s0EY-8`ymSy@7 z1AWcCy|qDcj?Jf<`aVC?Cg)OaJA*C zR)v2=eWxCU*Dv``l641B6!%i>Bgti7Rt)jv+h&buJfVCzvpH8ER5%7Yz52jtZ=$yD zsTuJh-zm?=$^|zTugm$JX7r$G>*Q=3<3gTxSR1Gb(wwib0c)zMkPaA5(qx#$rYtd` zQ2<$mVaJjz`>20YW0=ZI@>l?X&k)w~2U!-tE5d1B^XN{)yNAw20!s{Ft6Q%1jq-t) z=>qKBFbHW^@3`oKsc*J;{)YoH{O^*=f|NBx99+ET9!;;;&KGXG6=o>1@|yskqUVhF z(^wOKo!el|Pc>!9X~pJNWZs_=oz=4f88~$LrRx$RW4qL7r?WpY7N|I8G3I$#K2!Az zNgUS2ozipbB_>!=%71GV*`{J&2hJ$Q{TL^Nkpl__N)~x1BCJA$BP4w-nPr|8tB=+T4_t-Q-wXt-eXd(|MD>ARCauDd@8T@Rs zPEI6+GQ4Otc-c+`89|Yh@>MwDbsetovs&U4Ks=@8$VVKTXeRN&@C5PV&2j#3=IVmP z;&duO#XR=&AuyAEem}@F^g}!Di)@f-wCXyKwnD$B{w1uzo`C_;+ifh5FpVnj4iYgk zAyl=j{MlbXr7ObV-J|8hN6aqzTBM(uyi!EB2deR<a9&g#$_5YpSl`JndecHH2*Ts zgy_}T+0L+?BxgeFcWW5KZM%a~w(HYVww=ue#+ykO)*tz!)rkSAD9Z~R4O2Xg{(;Rz z>kL~%dG4#m!4)aj(AwA`;b{>tp$YB}oDa1l+I>&KsswQCu=oAG7F)}(A>*OSu78q*@ zb0^ySH+eBwiJ62yHF@Njx9Qd4MUufyG?2c1=1X=;gv0v6C?_Gk@wZ%kn?`4Q%}-{> zTyYENRg^#h(qV9;_pE-s9rY#H8vC+&o2v5x=ch~m*4ycGEM*pbH{2^rz<>pAEY;Jn z`Vx>G$6I@EzvGTWZy9p~LyM=Q%&C;xSNcs5Ft4dSfwGBu05^rxxza~t=44HXkH{3X zT!$S?hqdkuBO-;a$Ee-J@lrBI91qV!d9KaDnb@aotZJ}^8q)u`I2Nw)^pv1KFub@B ziHVG~t&pzN$HOuMCQz`-67R{itF`>`UOQccA|K94L1=`uRO(OTHhXL?`C9fF6tCVd0&SsvDxis@=j|r zv?y@SUEF7-Wg`1{ysnWsx@1D`lCBdlooxHN&Nq7K$&vw>T9zZQV7diiv_I%uM2J~a zs_U>IQ^Zikhx=m!XVBp&Ye&?sZxg}SSp#C-oakCEKM(HO#MVB3&Omcy??pblWR{7+ z`Qzmz9|2=tPxpyT_zAK3Xi}NOrQLvfWZ4+$wWRc>*Y0gmtY?=d4TU~XP3r~WfK*H` zvNqGc3-*HeF`oPf8?WR-S!($%vsI$U-M#Tay4wXc32iClmfVhkLV?%kTfbatXA7o3 zQWFob74)XLN%I#iR-`JLKlt3S-?sA0bfYql;r^f_T6Xg2%(XZQS~~1obo5Fpn>LY) zxd~Ety7GuK^L=vxe7tmUtN;50@SZJamWpmacN4>w4#m2piV%bT#?hv{+cXPpVBXdcW9r7KT zzfHl^Osb30wMqE|I&W!6{JLi*UL9#YD`zVaW0n@TY){*J5<1V5HE@)!?#YA~>q(zi zIZn4!i>$BCB*h#sgAjDTyrM&@k4E-p*mG}x5X*8fZg_pJVn%*p-#Qo1yPBDob8bR~ zILOYx>b!gfYABWHD-U{+B+ywIxYR{4=MpH{LdBwZ5zrdHE}0|PJYiF&qI)!2Xp?4C z9vQR1VL=^*3G^!vI33^T`{gO3X2+Y%Z;}ocS3@i?U+RJ82)-27I2TGiryge%G#?;t zSRkV+*lMSvs)+T-&-%{jm{*;>?{byv@UBkmy(Bxk9eqTI2atz|#qd}HRdd5G!Z{KG zj^i128y(_}_Z5&&lxazM5cb2VTR4c22M3yW(oguVLV*MQ`)tSw8zI8ETvN8}(o*r%rjDzf3h zbv$pO#3o3$(mCF4?PGQ5v+C71Lyc;ji71a(Y+g3WR;*c*r#*?(DuwNI7)kq3jt{v- zMQgy^X*Wy7N+|sk?5LIsCJR4iJ%jGCkzO-(V%g_H%5adi^WpXFYPa*VQ(dVC3wLtB@Rr1Dnuc%FATpIP&2)8k{muhRaFNgkxjO+B-Ea+x9_CdR)` zNDTU6NJ+dIOvB=YM7F)fs3|%Om`b%D;--%Xg~ZCI33W|eTHj>kp*=kX-^utK+t*~h z>ZFKCK+ zZyx;g-kq*35%!D%VLhy~a@$G^r*8?7KMa4vEX(@~C13Ph+V6aK_+)+9uk`ch)QHYD z9Q#2?ljPp)XJjHn`{rl?0fmF;5CQDE+D&ps=zLAgntJSnFqmrBlE9CS|vjysv>13SIl0F~IhH6~Lm&NBgwgwS(7k*)=$L|6j!rj+iEv+|!<)zmL??W=Zj@;t$rKcF z)r(Zc+W)#UVTBD3yK?BI+O(pB|L}7)YuWaM7k-injz7e7@oI#vyM|b4L?$oB?#cGp zPl@GS*y@(Q3rpAj z_#}3Z&1hS&@(5;ZWKC0kRsAw+d=@&UVDt%A(iZvM)VLp3a#Nab03H7lXu=+M+f#CN zJQ!8I4LMgz5>BdNc-=dV z(6N{N;f=3Lsv<3@7WHQJ3E@Nz|*F_m#fQFJaRuk0IArK!@!MIzYwyeOKEs<{Y(vmQN wR9du|zB~!Eaw6!ysgpqeHi>VK12J#`W9mQoxY7(p{`?J7Q`T0hQm_j7Ki^6LYXATM literal 0 HcmV?d00001 diff --git a/basicswap/static/images/coins/Particl%20Anon.png b/basicswap/static/images/coins/Particl%20Anon.png new file mode 100644 index 0000000000000000000000000000000000000000..f2947fea601433607c2f17b4a5126886dcb1844a GIT binary patch literal 7887 zcmaJ_Wmr^QyB<2EyM$pV31R3G7&@dGI)|ZQ7=$4Pq(ML$1*BU#R7yfXrIGHIltxn0 zPJ42nq^7UQTy889)d}&wu%iT+Zz1rh|>)K9AlyV zf>3pGw-~iZ04Bg=il3dL_xtbg7F|wb05BP_3ZmG4fRUsR=;Md>Q33ks0Cff*><9s` z0RT7ja|IBff*7!WrY?&Em@R*`NDG)PWGcr8#A5(59;vcpLRtYfhN1d=n4O;i`Be}Q zKXzvgMu=&nkSbWFma<;DE!npdGv(EBjmcJ90HP=;F`U`vw1F zz_Uz9Ms;UV_}w#@yHAaN!uBAxf}s25Hrst~Wbj=A_t=`qI}1MQmp@Hnnsq^1z37kn z$x5vKscRHF!9qV-((VXe`4R)FUg&gcH{vx6x^)H}VqnISn2h@XAVH^(;}{+!1IQdj zgwU4&z^jg{L=j~j8!U{+%{nrG>lK1k$???sfnb76a#mnsq{eIeV)abC|)hQ(S%Zvz2<6WTH~VdC1Dl zn#*CuMM7!)N{yYQKV?Ikkd-4zNd1AjtJ;Fv<6?ti*>N)GY)#I+Bt-x62LAhyDqwnY zQxa*CPRdRHmyISWsqW}CO@cyp{o>aY8lv`co7g3JLJArA6?)&wb0_gDqNVc8)DihU zx&j7K<&+}cnH=A;XcPyF9~VuHW;#1MUpfiwpjrr)!kLxRN7Kh$f8gzG?}VTE5)r>3 z4)0a7eMIj{A3$G9*F-Onq4^ePB0ZxI3Z4;S%y4`|`UYue!gIm%oH}`cB2_BYC^aZ` zy8>$HWhgg=u6O{gG$gIGG75aFV)#LKy_{f@rgEzMpl@TMO6cvhMoA^V>u3e%oOSbKb~Z?tU9-(T%(`rzC!`UnJQ8Yp^I zI8-?#JLGIV`-VZ%^KSK6axPnAn01(VIN&kXW4Xugrd_HXs)MS<=l$nD&D$P$9?%@@ z%^!JtL*Y`Lw$UURkKz7`w5a$*{->;PjhVx zxABoB%Guo-v0|~kY4d5%2XWH0(k`ps7|9x;jn0i`s??_~_W1S?)5dPPjK*0+SyEYp zjb+tY)n9$G5Gzz`REgZ<+~)@F^Md=g`-J^7qAPC3&h39!yzV$httw1>F1s( z?;#&IkG8$y?;>Byzm|X5F?M8hEbz)X6{UUqG-;3`-6x&a08#p~)IHCCFm;pRuw}eq z;=CxUHEXeY4l%hjB-0&Od85Uj#n^B8MdnEU?D*1T?b*&YH zW}Oe&oVn9rMBl+~1Wyzv9;X#ofJl~FfrxO^Lv6-*4IbjuWS%BZcrk*%LKcL4d!@NE)QBIws_GWq%;HR+ zL3KFA(`DZ!>ijtk+AZFw1>{pqXbuY|qw@l&ejZA173SP6hSoo24YiD>c*Y}C3sAF?z>!+{FA0(3f?rS4h}DNiD@B6XBM6~-6py=!XLc#^V}W0ZO!u_PU+c@{#RS%SdT@xoTwY+1z8v*V(VLi}Z<|)9QI=z)g>ubR2kjUlDJh zw-5u2uc8JnH`uPcP8X=%A~nZ~>h)`MNoX_$%6R?E>CF9_)!Nm}CWTiV?su=)9)!_6 zZ%?YzZLa$;+w5oha~0H~+)Be1Ye4JEFKDUXV&~_4JRUgcH26O4PIt{j-|)l*y?BzK zA3k1EqR1O&ERtIOx_{8U=FIFPoEnyDXL#h2K4oqc%tM=MUFA_#R`aV)rFm=3SlfE) z`8gUfKfkQeG;pw|wpYC8UUg~OQLEAJB0n|y;+VLa@n`%dqcuWf8CBr#a-Q(5{@cJe zEK!)~f%#Bl)xt@ESkZ-lPO#;m(Oq?A)2BJk`RR@&-+)t+@Q2jW%SW&G+ZuTNj9uH6 z1JB*Z55txc8EhF_I<|tAnpJ&ux^oi)N&@gMl#ljYP)N7M+K!I*1PFbxcxE*zkIk$Q z zCw9ZHzL&l)r5qUuGWw0)^Qzolxm&w=I%0A=d;H)kcBG>QU4H6$R9Rjt)yvk)(l(5i z`T6#?dUzr5sQIX6rMI0W25-mxRONB6jwY!hAp>u#k`dSXe+%;?4gy^!9X@ISqCVEZeShm@kHJq(5Pgd&k{e{ZC&6B32= zazc6lg@pNqfsc%x-R+RRUflm8XlY5QyL+Kv?r?i`B^l5k34Uj1J1G%)u(A+XL`+3Y zMO;u&Sy4enSVTcy8LTWXA*!UPtnxQk2?_T`*t?_t=Gy%aSNtEjf7t=y@h7s9y{EH} zy`73D5&`^I%~H<)oQudm>iwH*_s_YA{v%i5Pcj03b@qRC`tPMb_W5i0AM5^^{Kx$E z?tdKb`N!IV8**^~0NJs+l04LJe&5nLj;WhEsMgV8#%d)k{=mbDxTnshm;7rFlLjD$ zEi58Qja{RU14fk;lLG9Hp`gS{@JxnuzEES8O9A3=gwj3W#&GK+<)y)89BSAC(@`;o z(_Wbc%(MzyqNgmE&MO?>wzdTL`1;7;Y-Z%_?9^1$E}u{Bxlk!UDn)djnJJE978{y{ z)B~JTX@HL*W+ga%vjW`?$W>=cOUfVitW(0}!^YnHQ}j@-a-JK#xBezm%oRtvfr?WP zq1MZDOM%66H?iMn=qLaOXP&ZCPYo><8YV*wNcEQ#&Yca#DIvXPA(OaWdf~rCEAon@ zyy^G@l6K+H-yjT-$KpCO8D?R)m3wiE#l2+M`mxy5P1!xHcxpZxpa9V{0zOaQ9pW6P zyD3{%^d`peavH)agibV-*SwXgjzR1NRq&R}f)^{?W&x~Vnn4nM8DA=NfqD6|X1*J} za0nUMxZ-uBzD|+g;j>hR8*&U`a0Lb{*skqZydsYYOK{;7TFa)pOrM%870S9agMecb z>E6x0y%uc&6sW9d3M7&kJQ2)RzS!2A>KMbo7rpTDH+|XwfPd%rR@&)! zTKn}{^*}i!fx;%{+N6_Qbip>CXjB}3)LQ#=@TTwW^U`E3XZDYN>BMvrt`rh^a*W3( zSIajJyldfKfMTC;4qJ>N`|5GT$buNZXvmeifjYkEZq(Vy>1;S>qdaU*-=l^VOi0pK z=`U1(t%!dodpjOLeI}ozVXm9`quGV1wv=gxLqAsxD#Sp1)C*MDncl1-aiPC*iCq8=*sT?(Fl;<>Nx8BW zx_H{E$1iC>`wZtvM*1N$nd(^T5i3mtQ{EoMP-;I(AqzEDn-Rgv<$oLdfXWe{4!tJlG9; zw#==2J2iENJ7@CJ!-a8|%h_c1r}vcRFJ67GGZy3UzG7BwOG9<&u?A1o?Rs!%E4LW` z^T=IW%n~_XAbN4xx+gT0ODl5xp)sZuT?Pi7MyL%Ibs7DJu<K>lBXx57R(WK_GV&p67L3~UuEaa=53h?B7HG^_d3J>w~CUZV*4S>j;> zlmeG^L7bZfZCOIfdGrDZqii(LkS+)r`4|2(^k_EVd%Wm58;y?v?L1 zWx8rHOD`(^LMHi(X!9QJ++G}v?V2&NfH;U zG8fx-FyI^c^CWX##20{}V?X!3-LBJwOG*G-|GHKV4|fe?M}Hl4nN-1-LQ)Pf?s>V` zM!%}7469(|(j^b4ru%h&y@kQXP;bzR>uyPEQd1`zt-Gn={bMMLV0cG3MY};iekN%? z$($8dQtKgKT5#B|jgLSL1}|bBCXi-jR(V?A00v0iVPfjiw5!*)>lR?~9g&GiKVo8F z#03?{i=SLiyo?%}Hs~#PSCTOv)drxU;ONa@ed+S{DT*~xGgucB?|H6~#<*IaP+k5+ z&c_K+y4%!>n>FUVPDbLAU@{(oLnCI!YyCq>j)C<|nXxTC&o*}_2_TPT*UN72x885Y z8qX>*gYTE_z?m=okR5n0D93TjID)RR7bX^qduj`;(ll+eT)lvewDj9l5+4VYB{SRD zEhRcAHH`CcB)ke~zej<#$m8VO!s4>yB32sksS|nh5ZtY+hkKDH>$M7-bJ)FwzMVg! zj<|VZSOtdOXIJzf71=O8E=$$H7LsK#Le?WjUU9yxX@7QSFb#uq9N;5uf%qM3URb^BI>yxM?#DO+uL^K5r;WLw67iCa2Tqa1Z3Fr6L_jZr zT?%)ct7Kg1OMUJWf9>shYzTH1-DiNPax(L7DI-oF^-eQgw*iht%Yhq%@#I4>2`@yv6K`SZD7;4Wty3_1s)#f%mv5hro2*6;T|9t}< z3=#UgrB!T+c_7RJPZhfR=(EJfA@@fEoS#)(K9c*0CF@9B>AX;med_rXe@AA=Ef|#3 zqEKxH{rylgEk##cSlqN1{0S=Y*$(m0Jxe08HfS4YVBC|!o*9R%iU58v9eNuxDfC_~ z-jSam*``=~TV6~i`~}xs5`HUN-}nc4Q|T+k3xd!4OG<#_#0*;JFd5^UpuA?>XjxCsQnv z5v{VbIUo!itst^#xw1wT7={*)-3*(et4bB$G_irDfqhtt{d9G>^j(gYsT?K-b!Ofr zyj)v2>~{wa$@0WI5>)SUNELd`dTp372o``S*|g3~euNCyBECD;OHT7FhYcJ%jYj(N zsYGo&d0uuwJEi*AtW3!Yj52(pSCBO9P#+%NA5n~NQig=>G^`*!j(cqa+q7R-)buP)ylWMh%OVQDcOESa;&CZWoAkhlOM4=fWv0MAEhPz##q5$2tPV= zQ=v862qo&`^5lsQasK-disnTHrRdMthL46~dQQWHwNrB2LiUFXnUnBhYBKds8mf~< z1BlMWgp8<9hx)^cJj?5N-pxNlK+~)qt;Z?!%sTm6r8e-I+dO(R!op5Bs#;=OI9Rz( z13v8R=V8+hP)92#(o!R*$}>eI7jFegV9P zbWu`L6dsuhBO&^TE<6i5^w(TFjTn!Qs417IV{sxikcMI+ zX}yLPa<;l>3^%EC;zWgR2m}kG5comv%~5!X>mmc=d{(6H9MRP0EJ^%|%Wp%#`AnX6 zpp|si3-)AQ2dO9~Mws+XjND;zuj|L%u&4ex>DQ-eWktJTWqHJ(GU&JzT)z{)uFSzg zY1J{&pqPVxNqPh%nwIHJa4Jjk58?-Y_!b(2HudD4nrLa69$P@pGI;B4;&9V8f+#X5 z*ZoRtH%xf~NTB8EJiRX|V>)N_P<(79h3{)=6WsiWubaBL%%#^g{JA0cr){9A;ov>D zrs4*z#-KhLGD#;Bo=6)yEDk;>7H&m?eZZ*eNNrw3m+!c+B>JWByCt=jRm#qTrw!`g z6sKqEpJ>mMSLRIe;9V;OK2A!Wrcogq+sMGQ;w{R`Xnnn|L^M*TU4E?33#4GvG+h=9)LnK(7#SS6Wjd69 zm#>K7?|*lA84n=ISTLix*aEqu9^&@#W1|4l*SKl#>V!Yjlt~B~0v>R078Hpkz z`c4>+#p!Fzar=%32yx>J*zM*cOuRYXd<#(l)X`-9GMKaCRTAcbjei{|wsa6>)kJFdb!cWX3G=Uw?M zj5U>vgCnJ(P0(j~TwLbTo!vTc)P&_(PkO#c>jg!7Kwa%8-|oW)U25+!kL?J_=MKw< zGowB>P%VbYi#yEuaZ&;asWS9CIMZA?n><#KdB;9*#YPph|`|E(rq`lKV(ISnOl`!8 zw5TlDEu`!O>)2Pf(mcUEfK;|vJGx7wSH*l_8Xo?|4k5~T?^$1usx%1a?ZfTiZOm6BT45`c?kaiyB!YExn3%}G)z1X-jOq54k z*Uoei#BM9VG!BTS?tc5_b~Br_Gg%Doz4W&$94^#XayCqUv+vt!VbT9&zdf*hCNToE zv>>p#R3~Rl!eD8^P+J?`!Rxp*u7i6Yyb?f1a(_dOtZdt{HZ_wjdwz=b>&Hk|YD>jK zDnd30{K%l37gn{)a48Z-qCtxEOP#+n{t=AO0m;jsXT{H!b?Dt(EZaS;rgGGb=r`t% z2s$xJa9=W%rZMqL!JBVJb3wG4_*$}@H$H$P#ao)-OzrJ(YK_2lEjhWv;0I;y(yt?LpP>j^61V;%&s6wu{#%D4~>izzF8i#dMWP1M?k;zb|ZIeVsD z*Q|e8EDF(~Y*WQp@t{6e-ric}Qn>83R&sp0bjnh-Qeb_>qpR1Au`d|nSksfD>-(r# zb}I9PUv?&uincmSt%8SXv}sF{Xw&z7X`(X{afgW!{-KyAni)vyFu$ z2btAdOjy2kSTAS8|N8T;{s%+n@pkzjv3M!b7kl#&gC=a%w{Np+0V(HCoQ5Vg*ws0Z z)k&s5gq|IAH16c|iULIeDGO`;@sq>FQr3p_D}C`68@{io*?`<0AH^mf+%MIPD+ekX zqFt8PJ42nq^7UQTy889)d}&wu%iT+Zz1rh|>)K9AlyV zf>3pGw-~iZ04Bg=il3dL_xtbg7F|wb05BP_3ZmG4fRUsR=;Md>Q33ks0Cff*><9s` z0RT7ja|IBff*7!WrY?&Em@R*`NDG)PWGcr8#A5(59;vcpLRtYfhN1d=n4O;i`Be}Q zKXzvgMu=&nkSbWFma<;DE!npdGv(EBjmcJ90HP=;F`U`vw1F zz_Uz9Ms;UV_}w#@yHAaN!uBAxf}s25Hrst~Wbj=A_t=`qI}1MQmp@Hnnsq^1z37kn z$x5vKscRHF!9qV-((VXe`4R)FUg&gcH{vx6x^)H}VqnISn2h@XAVH^(;}{+!1IQdj zgwU4&z^jg{L=j~j8!U{+%{nrG>lK1k$???sfnb76a#mnsq{eIeV)abC|)hQ(S%Zvz2<6WTH~VdC1Dl zn#*CuMM7!)N{yYQKV?Ikkd-4zNd1AjtJ;Fv<6?ti*>N)GY)#I+Bt-x62LAhyDqwnY zQxa*CPRdRHmyISWsqW}CO@cyp{o>aY8lv`co7g3JLJArA6?)&wb0_gDqNVc8)DihU zx&j7K<&+}cnH=A;XcPyF9~VuHW;#1MUpfiwpjrr)!kLxRN7Kh$f8gzG?}VTE5)r>3 z4)0a7eMIj{A3$G9*F-Onq4^ePB0ZxI3Z4;S%y4`|`UYue!gIm%oH}`cB2_BYC^aZ` zy8>$HWhgg=u6O{gG$gIGG75aFV)#LKy_{f@rgEzMpl@TMO6cvhMoA^V>u3e%oOSbKb~Z?tU9-(T%(`rzC!`UnJQ8Yp^I zI8-?#JLGIV`-VZ%^KSK6axPnAn01(VIN&kXW4Xugrd_HXs)MS<=l$nD&D$P$9?%@@ z%^!JtL*Y`Lw$UURkKz7`w5a$*{->;PjhVx zxABoB%Guo-v0|~kY4d5%2XWH0(k`ps7|9x;jn0i`s??_~_W1S?)5dPPjK*0+SyEYp zjb+tY)n9$G5Gzz`REgZ<+~)@F^Md=g`-J^7qAPC3&h39!yzV$httw1>F1s( z?;#&IkG8$y?;>Byzm|X5F?M8hEbz)X6{UUqG-;3`-6x&a08#p~)IHCCFm;pRuw}eq z;=CxUHEXeY4l%hjB-0&Od85Uj#n^B8MdnEU?D*1T?b*&YH zW}Oe&oVn9rMBl+~1Wyzv9;X#ofJl~FfrxO^Lv6-*4IbjuWS%BZcrk*%LKcL4d!@NE)QBIws_GWq%;HR+ zL3KFA(`DZ!>ijtk+AZFw1>{pqXbuY|qw@l&ejZA173SP6hSoo24YiD>c*Y}C3sAF?z>!+{FA0(3f?rS4h}DNiD@B6XBM6~-6py=!XLc#^V}W0ZO!u_PU+c@{#RS%SdT@xoTwY+1z8v*V(VLi}Z<|)9QI=z)g>ubR2kjUlDJh zw-5u2uc8JnH`uPcP8X=%A~nZ~>h)`MNoX_$%6R?E>CF9_)!Nm}CWTiV?su=)9)!_6 zZ%?YzZLa$;+w5oha~0H~+)Be1Ye4JEFKDUXV&~_4JRUgcH26O4PIt{j-|)l*y?BzK zA3k1EqR1O&ERtIOx_{8U=FIFPoEnyDXL#h2K4oqc%tM=MUFA_#R`aV)rFm=3SlfE) z`8gUfKfkQeG;pw|wpYC8UUg~OQLEAJB0n|y;+VLa@n`%dqcuWf8CBr#a-Q(5{@cJe zEK!)~f%#Bl)xt@ESkZ-lPO#;m(Oq?A)2BJk`RR@&-+)t+@Q2jW%SW&G+ZuTNj9uH6 z1JB*Z55txc8EhF_I<|tAnpJ&ux^oi)N&@gMl#ljYP)N7M+K!I*1PFbxcxE*zkIk$Q z zCw9ZHzL&l)r5qUuGWw0)^Qzolxm&w=I%0A=d;H)kcBG>QU4H6$R9Rjt)yvk)(l(5i z`T6#?dUzr5sQIX6rMI0W25-mxRONB6jwY!hAp>u#k`dSXe+%;?4gy^!9X@ISqCVEZeShm@kHJq(5Pgd&k{e{ZC&6B32= zazc6lg@pNqfsc%x-R+RRUflm8XlY5QyL+Kv?r?i`B^l5k34Uj1J1G%)u(A+XL`+3Y zMO;u&Sy4enSVTcy8LTWXA*!UPtnxQk2?_T`*t?_t=Gy%aSNtEjf7t=y@h7s9y{EH} zy`73D5&`^I%~H<)oQudm>iwH*_s_YA{v%i5Pcj03b@qRC`tPMb_W5i0AM5^^{Kx$E z?tdKb`N!IV8**^~0NJs+l04LJe&5nLj;WhEsMgV8#%d)k{=mbDxTnshm;7rFlLjD$ zEi58Qja{RU14fk;lLG9Hp`gS{@JxnuzEES8O9A3=gwj3W#&GK+<)y)89BSAC(@`;o z(_Wbc%(MzyqNgmE&MO?>wzdTL`1;7;Y-Z%_?9^1$E}u{Bxlk!UDn)djnJJE978{y{ z)B~JTX@HL*W+ga%vjW`?$W>=cOUfVitW(0}!^YnHQ}j@-a-JK#xBezm%oRtvfr?WP zq1MZDOM%66H?iMn=qLaOXP&ZCPYo><8YV*wNcEQ#&Yca#DIvXPA(OaWdf~rCEAon@ zyy^G@l6K+H-yjT-$KpCO8D?R)m3wiE#l2+M`mxy5P1!xHcxpZxpa9V{0zOaQ9pW6P zyD3{%^d`peavH)agibV-*SwXgjzR1NRq&R}f)^{?W&x~Vnn4nM8DA=NfqD6|X1*J} za0nUMxZ-uBzD|+g;j>hR8*&U`a0Lb{*skqZydsYYOK{;7TFa)pOrM%870S9agMecb z>E6x0y%uc&6sW9d3M7&kJQ2)RzS!2A>KMbo7rpTDH+|XwfPd%rR@&)! zTKn}{^*}i!fx;%{+N6_Qbip>CXjB}3)LQ#=@TTwW^U`E3XZDYN>BMvrt`rh^a*W3( zSIajJyldfKfMTC;4qJ>N`|5GT$buNZXvmeifjYkEZq(Vy>1;S>qdaU*-=l^VOi0pK z=`U1(t%!dodpjOLeI}ozVXm9`quGV1wv=gxLqAsxD#Sp1)C*MDncl1-aiPC*iCq8=*sT?(Fl;<>Nx8BW zx_H{E$1iC>`wZtvM*1N$nd(^T5i3mtQ{EoMP-;I(AqzEDn-Rgv<$oLdfXWe{4!tJlG9; zw#==2J2iENJ7@CJ!-a8|%h_c1r}vcRFJ67GGZy3UzG7BwOG9<&u?A1o?Rs!%E4LW` z^T=IW%n~_XAbN4xx+gT0ODl5xp)sZuT?Pi7MyL%Ibs7DJu<K>lBXx57R(WK_GV&p67L3~UuEaa=53h?B7HG^_d3J>w~CUZV*4S>j;> zlmeG^L7bZfZCOIfdGrDZqii(LkS+)r`4|2(^k_EVd%Wm58;y?v?L1 zWx8rHOD`(^LMHi(X!9QJ++G}v?V2&NfH;U zG8fx-FyI^c^CWX##20{}V?X!3-LBJwOG*G-|GHKV4|fe?M}Hl4nN-1-LQ)Pf?s>V` zM!%}7469(|(j^b4ru%h&y@kQXP;bzR>uyPEQd1`zt-Gn={bMMLV0cG3MY};iekN%? z$($8dQtKgKT5#B|jgLSL1}|bBCXi-jR(V?A00v0iVPfjiw5!*)>lR?~9g&GiKVo8F z#03?{i=SLiyo?%}Hs~#PSCTOv)drxU;ONa@ed+S{DT*~xGgucB?|H6~#<*IaP+k5+ z&c_K+y4%!>n>FUVPDbLAU@{(oLnCI!YyCq>j)C<|nXxTC&o*}_2_TPT*UN72x885Y z8qX>*gYTE_z?m=okR5n0D93TjID)RR7bX^qduj`;(ll+eT)lvewDj9l5+4VYB{SRD zEhRcAHH`CcB)ke~zej<#$m8VO!s4>yB32sksS|nh5ZtY+hkKDH>$M7-bJ)FwzMVg! zj<|VZSOtdOXIJzf71=O8E=$$H7LsK#Le?WjUU9yxX@7QSFb#uq9N;5uf%qM3URb^BI>yxM?#DO+uL^K5r;WLw67iCa2Tqa1Z3Fr6L_jZr zT?%)ct7Kg1OMUJWf9>shYzTH1-DiNPax(L7DI-oF^-eQgw*iht%Yhq%@#I4>2`@yv6K`SZD7;4Wty3_1s)#f%mv5hro2*6;T|9t}< z3=#UgrB!T+c_7RJPZhfR=(EJfA@@fEoS#)(K9c*0CF@9B>AX;med_rXe@AA=Ef|#3 zqEKxH{rylgEk##cSlqN1{0S=Y*$(m0Jxe08HfS4YVBC|!o*9R%iU58v9eNuxDfC_~ z-jSam*``=~TV6~i`~}xs5`HUN-}nc4Q|T+k3xd!4OG<#_#0*;JFd5^UpuA?>XjxCsQnv z5v{VbIUo!itst^#xw1wT7={*)-3*(et4bB$G_irDfqhtt{d9G>^j(gYsT?K-b!Ofr zyj)v2>~{wa$@0WI5>)SUNELd`dTp372o``S*|g3~euNCyBECD;OHT7FhYcJ%jYj(N zsYGo&d0uuwJEi*AtW3!Yj52(pSCBO9P#+%NA5n~NQig=>G^`*!j(cqa+q7R-)buP)ylWMh%OVQDcOESa;&CZWoAkhlOM4=fWv0MAEhPz##q5$2tPV= zQ=v862qo&`^5lsQasK-disnTHrRdMthL46~dQQWHwNrB2LiUFXnUnBhYBKds8mf~< z1BlMWgp8<9hx)^cJj?5N-pxNlK+~)qt;Z?!%sTm6r8e-I+dO(R!op5Bs#;=OI9Rz( z13v8R=V8+hP)92#(o!R*$}>eI7jFegV9P zbWu`L6dsuhBO&^TE<6i5^w(TFjTn!Qs417IV{sxikcMI+ zX}yLPa<;l>3^%EC;zWgR2m}kG5comv%~5!X>mmc=d{(6H9MRP0EJ^%|%Wp%#`AnX6 zpp|si3-)AQ2dO9~Mws+XjND;zuj|L%u&4ex>DQ-eWktJTWqHJ(GU&JzT)z{)uFSzg zY1J{&pqPVxNqPh%nwIHJa4Jjk58?-Y_!b(2HudD4nrLa69$P@pGI;B4;&9V8f+#X5 z*ZoRtH%xf~NTB8EJiRX|V>)N_P<(79h3{)=6WsiWubaBL%%#^g{JA0cr){9A;ov>D zrs4*z#-KhLGD#;Bo=6)yEDk;>7H&m?eZZ*eNNrw3m+!c+B>JWByCt=jRm#qTrw!`g z6sKqEpJ>mMSLRIe;9V;OK2A!Wrcogq+sMGQ;w{R`Xnnn|L^M*TU4E?33#4GvG+h=9)LnK(7#SS6Wjd69 zm#>K7?|*lA84n=ISTLix*aEqu9^&@#W1|4l*SKl#>V!Yjlt~B~0v>R078Hpkz z`c4>+#p!Fzar=%32yx>J*zM*cOuRYXd<#(l)X`-9GMKaCRTAcbjei{|wsa6>)kJFdb!cWX3G=Uw?M zj5U>vgCnJ(P0(j~TwLbTo!vTc)P&_(PkO#c>jg!7Kwa%8-|oW)U25+!kL?J_=MKw< zGowB>P%VbYi#yEuaZ&;asWS9CIMZA?n><#KdB;9*#YPph|`|E(rq`lKV(ISnOl`!8 zw5TlDEu`!O>)2Pf(mcUEfK;|vJGx7wSH*l_8Xo?|4k5~T?^$1usx%1a?ZfTiZOm6BT45`c?kaiyB!YExn3%}G)z1X-jOq54k z*Uoei#BM9VG!BTS?tc5_b~Br_Gg%Doz4W&$94^#XayCqUv+vt!VbT9&zdf*hCNToE zv>>p#R3~Rl!eD8^P+J?`!Rxp*u7i6Yyb?f1a(_dOtZdt{HZ_wjdwz=b>&Hk|YD>jK zDnd30{K%l37gn{)a48Z-qCtxEOP#+n{t=AO0m;jsXT{H!b?Dt(EZaS;rgGGb=r`t% z2s$xJa9=W%rZMqL!JBVJb3wG4_*$}@H$H$P#ao)-OzrJ(YK_2lEjhWv;0I;y(yt?LpP>j^61V;%&s6wu{#%D4~>izzF8i#dMWP1M?k;zb|ZIeVsD z*Q|e8EDF(~Y*WQp@t{6e-ric}Qn>83R&sp0bjnh-Qeb_>qpR1Au`d|nSksfD>-(r# zb}I9PUv?&uincmSt%8SXv}sF{Xw&z7X`(X{afgW!{-KyAni)vyFu$ z2btAdOjy2kSTAS8|N8T;{s%+n@pkzjv3M!b7kl#&gC=a%w{Np+0V(HCoQ5Vg*ws0Z z)k&s5gq|IAH16c|iULIeDGO`;@sq>FQr3p_D}C`68@{io*?`<0AH^mf+%MIPD+ekX zqFt8PJ42nq^7UQTy889)d}&wu%iT+Zz1rh|>)K9AlyV zf>3pGw-~iZ04Bg=il3dL_xtbg7F|wb05BP_3ZmG4fRUsR=;Md>Q33ks0Cff*><9s` z0RT7ja|IBff*7!WrY?&Em@R*`NDG)PWGcr8#A5(59;vcpLRtYfhN1d=n4O;i`Be}Q zKXzvgMu=&nkSbWFma<;DE!npdGv(EBjmcJ90HP=;F`U`vw1F zz_Uz9Ms;UV_}w#@yHAaN!uBAxf}s25Hrst~Wbj=A_t=`qI}1MQmp@Hnnsq^1z37kn z$x5vKscRHF!9qV-((VXe`4R)FUg&gcH{vx6x^)H}VqnISn2h@XAVH^(;}{+!1IQdj zgwU4&z^jg{L=j~j8!U{+%{nrG>lK1k$???sfnb76a#mnsq{eIeV)abC|)hQ(S%Zvz2<6WTH~VdC1Dl zn#*CuMM7!)N{yYQKV?Ikkd-4zNd1AjtJ;Fv<6?ti*>N)GY)#I+Bt-x62LAhyDqwnY zQxa*CPRdRHmyISWsqW}CO@cyp{o>aY8lv`co7g3JLJArA6?)&wb0_gDqNVc8)DihU zx&j7K<&+}cnH=A;XcPyF9~VuHW;#1MUpfiwpjrr)!kLxRN7Kh$f8gzG?}VTE5)r>3 z4)0a7eMIj{A3$G9*F-Onq4^ePB0ZxI3Z4;S%y4`|`UYue!gIm%oH}`cB2_BYC^aZ` zy8>$HWhgg=u6O{gG$gIGG75aFV)#LKy_{f@rgEzMpl@TMO6cvhMoA^V>u3e%oOSbKb~Z?tU9-(T%(`rzC!`UnJQ8Yp^I zI8-?#JLGIV`-VZ%^KSK6axPnAn01(VIN&kXW4Xugrd_HXs)MS<=l$nD&D$P$9?%@@ z%^!JtL*Y`Lw$UURkKz7`w5a$*{->;PjhVx zxABoB%Guo-v0|~kY4d5%2XWH0(k`ps7|9x;jn0i`s??_~_W1S?)5dPPjK*0+SyEYp zjb+tY)n9$G5Gzz`REgZ<+~)@F^Md=g`-J^7qAPC3&h39!yzV$httw1>F1s( z?;#&IkG8$y?;>Byzm|X5F?M8hEbz)X6{UUqG-;3`-6x&a08#p~)IHCCFm;pRuw}eq z;=CxUHEXeY4l%hjB-0&Od85Uj#n^B8MdnEU?D*1T?b*&YH zW}Oe&oVn9rMBl+~1Wyzv9;X#ofJl~FfrxO^Lv6-*4IbjuWS%BZcrk*%LKcL4d!@NE)QBIws_GWq%;HR+ zL3KFA(`DZ!>ijtk+AZFw1>{pqXbuY|qw@l&ejZA173SP6hSoo24YiD>c*Y}C3sAF?z>!+{FA0(3f?rS4h}DNiD@B6XBM6~-6py=!XLc#^V}W0ZO!u_PU+c@{#RS%SdT@xoTwY+1z8v*V(VLi}Z<|)9QI=z)g>ubR2kjUlDJh zw-5u2uc8JnH`uPcP8X=%A~nZ~>h)`MNoX_$%6R?E>CF9_)!Nm}CWTiV?su=)9)!_6 zZ%?YzZLa$;+w5oha~0H~+)Be1Ye4JEFKDUXV&~_4JRUgcH26O4PIt{j-|)l*y?BzK zA3k1EqR1O&ERtIOx_{8U=FIFPoEnyDXL#h2K4oqc%tM=MUFA_#R`aV)rFm=3SlfE) z`8gUfKfkQeG;pw|wpYC8UUg~OQLEAJB0n|y;+VLa@n`%dqcuWf8CBr#a-Q(5{@cJe zEK!)~f%#Bl)xt@ESkZ-lPO#;m(Oq?A)2BJk`RR@&-+)t+@Q2jW%SW&G+ZuTNj9uH6 z1JB*Z55txc8EhF_I<|tAnpJ&ux^oi)N&@gMl#ljYP)N7M+K!I*1PFbxcxE*zkIk$Q z zCw9ZHzL&l)r5qUuGWw0)^Qzolxm&w=I%0A=d;H)kcBG>QU4H6$R9Rjt)yvk)(l(5i z`T6#?dUzr5sQIX6rMI0W25-mxRONB6jwY!hAp>u#k`dSXe+%;?4gy^!9X@ISqCVEZeShm@kHJq(5Pgd&k{e{ZC&6B32= zazc6lg@pNqfsc%x-R+RRUflm8XlY5QyL+Kv?r?i`B^l5k34Uj1J1G%)u(A+XL`+3Y zMO;u&Sy4enSVTcy8LTWXA*!UPtnxQk2?_T`*t?_t=Gy%aSNtEjf7t=y@h7s9y{EH} zy`73D5&`^I%~H<)oQudm>iwH*_s_YA{v%i5Pcj03b@qRC`tPMb_W5i0AM5^^{Kx$E z?tdKb`N!IV8**^~0NJs+l04LJe&5nLj;WhEsMgV8#%d)k{=mbDxTnshm;7rFlLjD$ zEi58Qja{RU14fk;lLG9Hp`gS{@JxnuzEES8O9A3=gwj3W#&GK+<)y)89BSAC(@`;o z(_Wbc%(MzyqNgmE&MO?>wzdTL`1;7;Y-Z%_?9^1$E}u{Bxlk!UDn)djnJJE978{y{ z)B~JTX@HL*W+ga%vjW`?$W>=cOUfVitW(0}!^YnHQ}j@-a-JK#xBezm%oRtvfr?WP zq1MZDOM%66H?iMn=qLaOXP&ZCPYo><8YV*wNcEQ#&Yca#DIvXPA(OaWdf~rCEAon@ zyy^G@l6K+H-yjT-$KpCO8D?R)m3wiE#l2+M`mxy5P1!xHcxpZxpa9V{0zOaQ9pW6P zyD3{%^d`peavH)agibV-*SwXgjzR1NRq&R}f)^{?W&x~Vnn4nM8DA=NfqD6|X1*J} za0nUMxZ-uBzD|+g;j>hR8*&U`a0Lb{*skqZydsYYOK{;7TFa)pOrM%870S9agMecb z>E6x0y%uc&6sW9d3M7&kJQ2)RzS!2A>KMbo7rpTDH+|XwfPd%rR@&)! zTKn}{^*}i!fx;%{+N6_Qbip>CXjB}3)LQ#=@TTwW^U`E3XZDYN>BMvrt`rh^a*W3( zSIajJyldfKfMTC;4qJ>N`|5GT$buNZXvmeifjYkEZq(Vy>1;S>qdaU*-=l^VOi0pK z=`U1(t%!dodpjOLeI}ozVXm9`quGV1wv=gxLqAsxD#Sp1)C*MDncl1-aiPC*iCq8=*sT?(Fl;<>Nx8BW zx_H{E$1iC>`wZtvM*1N$nd(^T5i3mtQ{EoMP-;I(AqzEDn-Rgv<$oLdfXWe{4!tJlG9; zw#==2J2iENJ7@CJ!-a8|%h_c1r}vcRFJ67GGZy3UzG7BwOG9<&u?A1o?Rs!%E4LW` z^T=IW%n~_XAbN4xx+gT0ODl5xp)sZuT?Pi7MyL%Ibs7DJu<K>lBXx57R(WK_GV&p67L3~UuEaa=53h?B7HG^_d3J>w~CUZV*4S>j;> zlmeG^L7bZfZCOIfdGrDZqii(LkS+)r`4|2(^k_EVd%Wm58;y?v?L1 zWx8rHOD`(^LMHi(X!9QJ++G}v?V2&NfH;U zG8fx-FyI^c^CWX##20{}V?X!3-LBJwOG*G-|GHKV4|fe?M}Hl4nN-1-LQ)Pf?s>V` zM!%}7469(|(j^b4ru%h&y@kQXP;bzR>uyPEQd1`zt-Gn={bMMLV0cG3MY};iekN%? z$($8dQtKgKT5#B|jgLSL1}|bBCXi-jR(V?A00v0iVPfjiw5!*)>lR?~9g&GiKVo8F z#03?{i=SLiyo?%}Hs~#PSCTOv)drxU;ONa@ed+S{DT*~xGgucB?|H6~#<*IaP+k5+ z&c_K+y4%!>n>FUVPDbLAU@{(oLnCI!YyCq>j)C<|nXxTC&o*}_2_TPT*UN72x885Y z8qX>*gYTE_z?m=okR5n0D93TjID)RR7bX^qduj`;(ll+eT)lvewDj9l5+4VYB{SRD zEhRcAHH`CcB)ke~zej<#$m8VO!s4>yB32sksS|nh5ZtY+hkKDH>$M7-bJ)FwzMVg! zj<|VZSOtdOXIJzf71=O8E=$$H7LsK#Le?WjUU9yxX@7QSFb#uq9N;5uf%qM3URb^BI>yxM?#DO+uL^K5r;WLw67iCa2Tqa1Z3Fr6L_jZr zT?%)ct7Kg1OMUJWf9>shYzTH1-DiNPax(L7DI-oF^-eQgw*iht%Yhq%@#I4>2`@yv6K`SZD7;4Wty3_1s)#f%mv5hro2*6;T|9t}< z3=#UgrB!T+c_7RJPZhfR=(EJfA@@fEoS#)(K9c*0CF@9B>AX;med_rXe@AA=Ef|#3 zqEKxH{rylgEk##cSlqN1{0S=Y*$(m0Jxe08HfS4YVBC|!o*9R%iU58v9eNuxDfC_~ z-jSam*``=~TV6~i`~}xs5`HUN-}nc4Q|T+k3xd!4OG<#_#0*;JFd5^UpuA?>XjxCsQnv z5v{VbIUo!itst^#xw1wT7={*)-3*(et4bB$G_irDfqhtt{d9G>^j(gYsT?K-b!Ofr zyj)v2>~{wa$@0WI5>)SUNELd`dTp372o``S*|g3~euNCyBECD;OHT7FhYcJ%jYj(N zsYGo&d0uuwJEi*AtW3!Yj52(pSCBO9P#+%NA5n~NQig=>G^`*!j(cqa+q7R-)buP)ylWMh%OVQDcOESa;&CZWoAkhlOM4=fWv0MAEhPz##q5$2tPV= zQ=v862qo&`^5lsQasK-disnTHrRdMthL46~dQQWHwNrB2LiUFXnUnBhYBKds8mf~< z1BlMWgp8<9hx)^cJj?5N-pxNlK+~)qt;Z?!%sTm6r8e-I+dO(R!op5Bs#;=OI9Rz( z13v8R=V8+hP)92#(o!R*$}>eI7jFegV9P zbWu`L6dsuhBO&^TE<6i5^w(TFjTn!Qs417IV{sxikcMI+ zX}yLPa<;l>3^%EC;zWgR2m}kG5comv%~5!X>mmc=d{(6H9MRP0EJ^%|%Wp%#`AnX6 zpp|si3-)AQ2dO9~Mws+XjND;zuj|L%u&4ex>DQ-eWktJTWqHJ(GU&JzT)z{)uFSzg zY1J{&pqPVxNqPh%nwIHJa4Jjk58?-Y_!b(2HudD4nrLa69$P@pGI;B4;&9V8f+#X5 z*ZoRtH%xf~NTB8EJiRX|V>)N_P<(79h3{)=6WsiWubaBL%%#^g{JA0cr){9A;ov>D zrs4*z#-KhLGD#;Bo=6)yEDk;>7H&m?eZZ*eNNrw3m+!c+B>JWByCt=jRm#qTrw!`g z6sKqEpJ>mMSLRIe;9V;OK2A!Wrcogq+sMGQ;w{R`Xnnn|L^M*TU4E?33#4GvG+h=9)LnK(7#SS6Wjd69 zm#>K7?|*lA84n=ISTLix*aEqu9^&@#W1|4l*SKl#>V!Yjlt~B~0v>R078Hpkz z`c4>+#p!Fzar=%32yx>J*zM*cOuRYXd<#(l)X`-9GMKaCRTAcbjei{|wsa6>)kJFdb!cWX3G=Uw?M zj5U>vgCnJ(P0(j~TwLbTo!vTc)P&_(PkO#c>jg!7Kwa%8-|oW)U25+!kL?J_=MKw< zGowB>P%VbYi#yEuaZ&;asWS9CIMZA?n><#KdB;9*#YPph|`|E(rq`lKV(ISnOl`!8 zw5TlDEu`!O>)2Pf(mcUEfK;|vJGx7wSH*l_8Xo?|4k5~T?^$1usx%1a?ZfTiZOm6BT45`c?kaiyB!YExn3%}G)z1X-jOq54k z*Uoei#BM9VG!BTS?tc5_b~Br_Gg%Doz4W&$94^#XayCqUv+vt!VbT9&zdf*hCNToE zv>>p#R3~Rl!eD8^P+J?`!Rxp*u7i6Yyb?f1a(_dOtZdt{HZ_wjdwz=b>&Hk|YD>jK zDnd30{K%l37gn{)a48Z-qCtxEOP#+n{t=AO0m;jsXT{H!b?Dt(EZaS;rgGGb=r`t% z2s$xJa9=W%rZMqL!JBVJb3wG4_*$}@H$H$P#ao)-OzrJ(YK_2lEjhWv;0I;y(yt?LpP>j^61V;%&s6wu{#%D4~>izzF8i#dMWP1M?k;zb|ZIeVsD z*Q|e8EDF(~Y*WQp@t{6e-ric}Qn>83R&sp0bjnh-Qeb_>qpR1Au`d|nSksfD>-(r# zb}I9PUv?&uincmSt%8SXv}sF{Xw&z7X`(X{afgW!{-KyAni)vyFu$ z2btAdOjy2kSTAS8|N8T;{s%+n@pkzjv3M!b7kl#&gC=a%w{Np+0V(HCoQ5Vg*ws0Z z)k&s5gq|IAH16c|iULIeDGO`;@sq>FQr3p_D}C`68@{io*?`<0AH^mf+%MIPD+ekX zqFt8x$ozB|9IZ_`drKTo$Gwh`Tov1f1F>8!A)&C8crGj0O)j38ir?Ihd&SK z+}WG(CDj-JXwIORM>R^H=-Vy7D0RX?r93x-zlzmpE*?kOysoMB)4QR8y<^6>y^kRkXYlTh+ffeWBu7@>$5=S|c{z3XlYCTBs-QGywldfT0-Isjms zg5(!OtX4iIdxi(d0m7(+08{7u@2~~~Au|A+49r28mM@Sc83J7r#$C)n7dudG^umD# zcnAP)q(C(YP(}x=|I|^U0>(>IrrCh;g3F~KAf61!5Y`qTS9t^2nuHjNk+-%3c@-)U z3Ch+gvf$gV;M(NDO;mtSf_V~yiY*YFp(fS`faS>nb)HN86kuJ7JlJr{T&WEqq8>#C zwDzX zJ+P9RqRz9R`QU#LOOiiU;mOT6=u+gqOmpGFhM--36YOiO(r>AG{9J6%-r3*NDgSN2 zBU2@#vb8Ym!~^Z_Q)QU2+)Jq@>At_rf7%&w?<7HF=!9t|9 z248pT7p9ea@EzW?6Y3OSI-nv_zxC#;^DledT7x#p$YbfvhkXE*pdaFKoEMS-Mki@F zX&(SmS`HFbM9F~u^rEi-(D;qrvg9F~?t2gbXyk=ltyVox+s0hcN}t`v-Pp=Tjy|WM zLMza!$f$O1A^0*)K6{!fhjA-nobqKg1!vyH%z4JzHc5H96A#Fmjj2|=Tz9|RYHSE8A3K{~oTi^xmWT#~I&{NKernHAzK zRSuJ;y1?-J$M+kxB_D=7zeVwp+*{>!2`}gU_jz7JL}>=A;IsnQA(AY41$I{w!AY-XihB(GQteC+xm6bcNVJJrl;Gnf@Vt*!A1_mF1PNpT4wok#u35 zC_7;eSB?OVV)i-?Xol`ns*&`JE@RjyI9G<#BZfzK6Z5NkR|8p+dzexYsivtxsmo=? zCSE4WqolG6#^ojq<<_QmpK6)BF!)+Z{gJhNw3OTAO{r|vfT6EpqQT%To5E(Blh8wZ zy62G*T6vMELSy^7_Z;zjtncBN9dorYPg9CDG1o_Wc6Xj1tn2zv9dY?U19Xkly~-Rb z9FrY$mOT2&=-=1OZ7WPIT_{TMZEnQ{IECN+b4bq!sGjo?ZHtnIY|6+|R;Yw$-h%ts!1H zm^4T>iNj4&-hR6;$^M(`BW(T9cKCeB#a`!zV-C=oW9EVu_-xL;4j-% zNPosmyDFmXu<)s(cSRiw%_98|T{9gUhH6KMeSKYG(-q?t-RlVoquH*x=;n#WspI&F zCz{zE*JEX4JJTl90(+^_^wRb#9+@hcl1z6^KUL_AS+0q#;l|9|47kj)XtNMmy{}3t zvnt>DWZ`C+zc43?42$dyP}oE73GU(c2D$q#GjWeyBVG&iBzpJx zxDguHisq%?mcA=}yJF_V<&^K0^FxO1>5ZgbrgWclHX~f|{bKjW{=KP-oSO~9FGqF@ zv)*J)S5DwQ&h#NW?v@|vNn~+#TfIeYss7yFH~-?%_cffN2WrrrQsgc1^SIIu#Y^j?YlvH#|#RXAZV5`2>V)g`9YsY`=oUyz zxE`*QsGj`={sXTcQ!H)~xY|}$(y65nyL;WMepaysmjdXmYG&#y8*xeHb^(wa;4**Bf7o`kA>l zY2Mv+AKna|N#wNSYG_#snyJ_J)$hnn40sZ7eou32&4q|}n|{{P@|+rHC>zg%LJ$_S zg7K4C8=1Z@2^LrB+f^6auFO6S4ESpBEq~zc^xOW~jC*yvpfwapbQsa%T_IkG%R}Zj zZGDR?%;C1?)^4u*9keC+)!w^PCebW6FGm=;bFdJa^0nBZI5+2}GV)`_G-+S=IK$QI zmQ|CJ`e3dy8*x*&&St;+$LHlltL;X@PsqOAlwjSBN@NvMJBV;Hk9u|ozlPcG-7r(E zBL37{yEe2na_`Wkb=2$AuTK(Ik4a5i@7KBN+=XT?*9$i6{_@$|VDqKf)Sb5SPxO0s z+&p=*dj61M^eFKaPSG1TUUVl^jG( zbD|O6k?4!|!~m)ecsmSO2ZwgT7-G;4B#&;4A^=bbVU5j+=6bpadpu48{l`Ya4@Wpd z1AwBk9|3LeiXnpSFiu!^BxLJN3j~aHKtjx9^k8}fb&N9>MUzeKQsXVliGCUeuw=_~OQKs*op zB;u8^bGfFlg^CjSEs%kpfbiHmutv!_X;qD+;9yDe(XLLgGdX)`y)$1NhKPg-N$xquU3m}Ff=4p#C~U$$gRLFKoD_A$Fp53qqEsH- zA#wU}`YZIdKh1uLZN$uQ7~MJk+-2TcpYo{F?+(rPxu=)nf75)Ge-9$V9)db4;p=F+;!n!z`(6t^3M+B!94OFpi7 zJP=7$x)6^(p@;*664*RBX2*8GA2oIdpDYhmg1&BF08yJUIF<`D`UU4 zyF?J)i~kI4xah#=J>6`p`{>&NtN$TtCQ317Wsdt-aAQZE;_ijpOPY4mZ?ocJk++f* z7GnJPKRX4!O`+_zwWRqRpW4_6eHkhMch5V0n-$_SO}VGQRYz^-c${0qjRF%2+@vNt z#6tu7#?4kg(BAEq$h-iLR;1nB-r1SI8K11VH{^CXw5|PR!D0NZOSz%xPvaN;2cJF_ zs`qQAxykcF1#L~u%!{D%-J;0?ODEqoY*oUEStg0C_U(>*&D8xM)9@nxZSIY*RZ*Gk z&a|d#{woZeoSd4>87Q9~))@!1n@jU&uEXdAG|Z#tMKy6lEP881eF3GURtw$=Ue=co z(K1fogZWMvvn%=JG0t>bw`W!m4rwC_U@gpLSD&?2PWtZ#Is3tg(f5PL!`+h}a-QeQ zZ>vOHeC8NmcXD_6Rp7;Zmh9;=R=%#aJXQIV;SN#R?~%_QLuuKwDLGQKRhFxg>06uz z*w3f3mCgN{mr{)FNcW=|{~Fk{nlXGMIVw_bN((7xHYOx$S#8|DIlHg^rkXK2W@~Bt ziGWaNdzH-vzX01N;aa;zkuK2OWk(;j%ttk`G}qhQ=)>!^3$spGFWW_GEqUh%zuFdK zviX9H!zfjBG}bN z7ijHx21MPLz0d2VL(z9?x#|6;s!j0h4Ay-+%GJukBUZtdok5jQ^;L2xv`9IH=2?GW zZf}!P=851#9ucGCEf2;?rc*LCQ*2QZ5?_XWZa`c3^vAeCCm$q_*jK!;=p%$;V!zBz zJ;o^Fk|n0szCONb(`?+oXdO@IYk9bj-jK-&xoIGZVi0%9_-&RPzp3(RGv{*EsPQbb zNw!e{;>em;)<0$Rn!?!pExe39AI%5DPO?X>Ib9!|X#W|?SYet3@ZZ14d>QnD6{DsRWe_#% z**qio+_`ujL{LHVt6)1SnX zpy#ni3(|x-^vx>qlSNX{%3a%!;Y7Wjc2L`Wl8t)D>l>NO#imI#glUsb*e|Ce)n7}o zIE!=aq91AOBr`$sW}XDR5m4ES5WY>z4IcOR;Ue?I@Z8QDjMLY>%WF%ox=}^k8NRCbdRzck zMst6o*qCu$yXT43R5;x15d9?7)_utZJ0**ztFP91A$r?xtu^AMCzI^Qq#2cPu<-k< zSo`$t*X7Wfa?->4f}feSFTSw(y)OUVZK7%r*D*YHe;a+r+S-Uq`7IN6>$fKL1a&PV zWnr3;>O9;A8lJj7Qj!V=SuVXXoNP7;)Y>Bxr&8^66ieH~pPO#{Z6zaTzz=df*NAF< z6^;y+zqsBVfs15_dK=?Gcg^vU$DKn*dYa(i)};fIcipO$bzC7IK_DSk;GSs!KTkPV z4O9IZUEK#7AtA7LxEPOJ3GVr3CnuEWu~`1{d3`2I$(G9Ix`dFyYl+KrB&cc!cNi-v zhCNoLm0kxjMhOLuLM(jgu4-ID&XQl0V|$4TkRfqvUHDY!dPEM&=3;v7qI7;eX7W5O zxZHAx9(IKA-A|AOF4Aie;rF+kGmE=-z{yzBlM1?%uIUJ$V-37 zDhg?*!lb_#lfRVL*RS^Q7P6q!+P(K9aepQ2qd|B`iN-txr=x>-ITVFb gEdnzg?>q)50J7HAKoL;GpXnUX(Y&cqrDhxYKe%Hw(*OVf literal 0 HcmV?d00001 diff --git a/basicswap/static/images/elements/circle-violet.svg b/basicswap/static/images/elements/circle-violet.svg new file mode 100644 index 0000000..b9994cc --- /dev/null +++ b/basicswap/static/images/elements/circle-violet.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/basicswap/static/images/elements/dots-blue.svg b/basicswap/static/images/elements/dots-blue.svg new file mode 100644 index 0000000..eb1a5d7 --- /dev/null +++ b/basicswap/static/images/elements/dots-blue.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/basicswap/static/images/elements/dots-red.svg b/basicswap/static/images/elements/dots-red.svg new file mode 100644 index 0000000..ccadbe3 --- /dev/null +++ b/basicswap/static/images/elements/dots-red.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/basicswap/static/images/elements/wave.svg b/basicswap/static/images/elements/wave.svg new file mode 100644 index 0000000..4d0a5b3 --- /dev/null +++ b/basicswap/static/images/elements/wave.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/basicswap/static/images/gfx/dashboard.png b/basicswap/static/images/gfx/dashboard.png new file mode 100644 index 0000000000000000000000000000000000000000..f26dcdc71976ff5e133ed727e12818c4e7bc7f24 GIT binary patch literal 90664 zcmbTeWpo@nw>H=@#mvlZGcz+YGsn!#9LF(Zo0*xJnVBIm#>`AHkI#AUz2B@gbLYos z_3DzeL0hF=)zW^X4p&l;M1aMG1pojD(o$k7007t;0PtlQ8tk)%+H}4X0Du*>5*1aF z78NCSbapVevNZz$JXf<+J+u-YF$K0B&5$%ieqGh2*aiZCq?OR4$lCeH@c^Tr$f!a? z!C|l(=ol!OQtE?0mSCl_!gg}0S}lYl!gM0l^|&sG)=QfFyf4qsUshf^4>J#6r@dy7 zzN4U0fDZDl0o*FVd_2F1VilzZ$GX0QVMzUfAVxlz=(m6z0syYSy*&M0YXx7w)HndZ z0FFxxWT+$CA3^O(6q*2H5a16G^$_k$oC;u+L2VQrFp3SRRc$bZ1tbChwqCv>KtMSH z;OtIX021)4EMXlB@GBp`3>pyq1&~H1Nd_j=0r;jKs6q$U+YiXC6aq3p^j3fQuHDQc z3HH4U65t-A6^A7B4e&ipgl-Z*%moGzB}AJ7Czb=xWt#8#Q)cKG+$!}2&^wVdl_ERO zir$(ui|cW7^=F4HA1S4`t4#$YMlzPPgL)jm za!r){29w}{0H_R6>{V#~+B9L?>wobDED}*`-W?$1e@h>Q3kL!qTd=WsJpup;Jx{Sh zv|j*IDTTWLK<5#*UTGqh+%Pl%AeI|QQ!D%xz7M^!7csMsptBbX%m_+M2%fB$4_O3i z?>jzh9(J-Yj#@9zFNmgEaNJy!^ljwEK4vb2!#}8cfv1jGP~Wh#`>{JiU?7A?q0x*; zc*0POV}1drp|R3pAb>_vZ1LX%DbgEyXLRmpJ)!5gwNYZ0 zh}VctN#?}BdS&oMFgKyLQX<@l;arzFS2iU5@5%W#bGVI!{NJ1NOXg&c+*|>E5ius; z=a>=AqkbFdMTLrg3)jM>7{N5z*J9U*Wj7(v;&jKr>&-U0geC)v{El`8ZSWJh-}Xmb zoTQeVmS`#Y8EGSGJG3TD&`;)mN?<~%Vk5aX>eHa7F;88bmP94R1qmTZHn{;MBAQ`> z6dB@J{GI|V33(igG@P`J)S481p=zPPJhD}$9K~sz-PqE&&B6N8ePmYeXU9P(lqiSdw8k<`> z`BVm`=tLoX!P0EHm4(%#CF8McJIqE9p?Jz{%Dm0d*W<(EpgRwEgb;+F5h-IT92*=T zoD%F79L6-cV#tM*v{5yt6&AcSi&Ugk2X!r)2O3`t&^T%mPm)HGf6`&On!1a+;F4E4 zoLYrCQiXwrU$KOGgVJsp%pzvRQW=4IM;S-;w2FsHtkR6KVL`Xy+mB}xg!+(RiQEvW z0yUGCVVr0Z%wZO@Yb}vwXASUEI-68^W8M0vGdXw27d&@HA30S~mvZw;bC7w~fz#9% z#NoO>SKPldWu{4{5vG0U!RZC*>z1vn%&YvXI9I(_yH}0RozF4PPggJ99J7S7=(6s4 z?06pCVA?s_mD_{c*W6}K1QtwAy^dk-$L|r3H|8Yo?d}Thu}&_RFXxCjnb@E?;&5!4 zxlFDm<4lfhQmtC&u6}NpqD)w}g9a@N=A;WKTPZF=Eq2*Gu>{O39q^4S**4AAZTO6g ztytCy2MdSxx~ZoUZPLx#=NcDWCnrbg)+>Kij-ADDFJ;D< z-$9S1o~OQ7wO?gEdp(0aOFx4;=YBAHAb+rXm?4;PSc6FO{w{`41E!<`s zC>tyrIM%elv&eJFx@E^ImW`W0O>s}bQnf3ID6!A+o=Doqy=b3rTDULB=*U>F`fazk zG08vVSMegxkbyU*Kfr$}e0TMzwc|9on^lrg(tjIw$Y|hhpl$HdMX1=2Ns+zGWH-7t zsQagD!si>00KeJu^f9==umD(&cTQ+`aW`;_znj#5*+0$y>udH4@AJf4?BAYkuN%y3 z1;}q-`o8Rc=?cURYyh_bCxS?WDEi6{84cM1#RxBeAp#GBpiShQ;LwY8gZE^@x^6+2 zK8G<5orR%;_sld&AxF535)(25y@l-WQ2Zo!JlPB#_D9k-td+?`6WJbo+U(kKzFfhns44Y=`$5Da zN{rZw`z7}B1ZX!uGlCVxyYr*-mFrqsW%%L`vNVz&xHfqGM4v4~6eZk-Sz#1aXuUu< z@ol8H@)}~xo0T)aoqp4ECuSyQ7N{UtB{$NpFtt#%D4NsKCLrv29oUWIC4`PY?vXyZ z+^%8R2FuMAG^$i9A!5ogmeP9aV(WUgN_9!;EV6Eyzn?sj!u`PX?TV{aYOQVf)#|Bz z{Rh}1-hoLPsfy*nz^t#*Zt7`uHSafJIZ>bdrnIA_qJCrTwSE($5;R{_Bue{3lP#$% zacsiA`c9|K1j8uFRQ=LAWl2{ffCekcu+p)zwEAzYMC-whrh?&;@4c7Z>guLU%lP@J z)M??VedVKePmN5MweZqx$Q42r-gWdoo}r!0rfZ(J^?l4#cIOZRVz)#aWI51(7aAOZ~D&CA5I&L&zVeC{mq6wvV9QQN6JFI4$r+YLx>d+we z3-9+)ZWa6b>?$4QO%JROOl_qFwA@3VN_o-F^Ypk?(ihm}^5=D39z_*o5f~6icDH=^ zUo!8SxQ(#KYG&tVQSo0t?fppDEio<0&QcKMUrbx~dX#%jv(Z=9@3Ih`$ri+Ny^w1$ zd>p&oJdD-9>U6vVJ{qr)x5!rUSMy8yJHBm8)#y5$nmtaOYw}gQ-pQZx&Rs49JX`lJ zxvczMVbIU<>be|0!)vjp*uZZkZ@>TR{&0@v0ed00uJ0Y|S@YVx`gZd58R;aT@x9Kh z*Y3~XZ@u4U2DFhb5n)2J-xEI;LbvB7Cnc9iB}k)VvxtcB5OBM0Os5mJOX^F|X2$(B zKDv|fK*!97LJ^i+G5-8x@Zl-2Nzkd6>_PJ8iR7r$0bulZfJUbb(I zbP=Udy$Zc6-OfFmjFikOJ_;QAzP~a){=9wp&P|T;Ijh8R71wfAbuf4JFmg5n2%9<> zn-NRf8CjUAm>HRRIgOd|0RZ3>R%%+VTJmx{CJuHCM*r|Ic-lFBN&^6Vf}V~>CN^fS z#KvY8R`&eB%Z?r(v6U%5P?KGrN#0S^%+gBA+u2OjTS3jl+s1_36euV_%;(ATsld+6 z)ri>B&eqPp|%)QC|N4o7K+lf4E&- zRm}d6z5lO@UDUiB%@|e8TpZk-O+LrYob;cj9C<{Y&5T?foYfp0Z2$X4Dp@+XI=EOm zI1;n4GO!a!^zDhCd?ux&c?yP z!ptl#CL+!yBF4q&`roo*4km7PX7;ZCEo=IJWF`Jr*?-)@&hfKlF*9c? zcQaE7X9qjtfBVd1^}pL9`oHS?FIm(7-4?O`RhIG77{-4__Ww50|6TRzKL2F@$8|po z|Kt2-_MaZ_{OQ_Jkt7lnXzu}D}J$f|fVY$}^exoE;?$UJz(aTml z#h!C9NKY$tMc(euC%ibf?R7ND)}+Y#hNDq3)R~O9>yc~gqf09%Qau<5A=@7HCO?_G z3rEE3iG>%gzKBZzkhRVxr#qi|I33JECC>EV|2~b53PySVtR6p;_&;mL&lCai&-eFR z0Acw*8Gr&&RNXrS2}Bcfq)^nqG=LJ>VI8!D^$$J~@qaiFmCYGU;u#LA=7&|)f%b@GTC%cPFk8IG{~vnlm$hZg*^!TJ1~u&yPueR ze4IoBF(Dw6Ek@hP@_c4wLLe{^d!Tey>9YX_Ov@WdHq3?$x~F3X>3EELxhOtMkalR# z9$qnpq#AX)n;F-k^`tgVC8xaH>Y3+$kgf0N+!MrsTtxn`F*D7M)-rJf-AK2r36gj| z-wX~y$Zg?RdAUqGemcb!cT9$1%FlMv$`Av}I20(rA@`s?F@m*F<2&z+yUE3*G8gV| z@1-Q7r~aVw=;MveYln|(Kb7I%IY0Uq$dRu$9jBu@W%UwjW!Mq}2ChynjmhGaRrcvq zUw5M-NHFl^cPuN$dK8DLSV_;H={2hinii9ixS7}z<51}$)p**C{cOo+)RF{J(Dws< zE^F7$3H0^x3BIeF-=NWGH1?%VL(M&oddwCsFXxm#qv=zF9O5snKX~z|b7>Sx3TkH) zvL&QuCP&$@hrTgM1wdw1e-lZ_ip=E5-lhgs+q0xaM8b}xh-}yPx`dgTX#-;$Gmq^2 zp;;Yn(Y#IFZVIoZ`3c+k0F%q#s|0!Q5v3{k)$4WW#e)fz(J3jw5(b*>8?F{DBTEqa zy&cpjw|q*v`TW+07Z6#k>|#7l%DMv{iW1Dk*}}3jJ7;`%(Y9PV@7AtYsy7_Htce0@ z-)pI0S(Bqq&sA9b_803-i%0}DSwVd;D74){kRx z@2<`3aG0uxuzn>I<}p(y8f%fEN@7PTpAS>@pQ&Pe$#Kjh*An20G!grd#z>xli)df7 zZ~*2bvZ7(B#Zh-rH#hU3xw(sr?E3lmySu33V)KkCiD&)!1tl`$dh9`*==Q+;|KmtE}QcFdZ>Ypbht{10_H(ysDi*$d};;TY&ii1+Zf`jh3M}ht`Gy*5ZiQEcyVYA zT5@nSv=i&%ddYc4wWM_7v0@$0^$pXuI|l^A=s&q7$O#$ha$#`@N2Mm1ogj^n$&pFD z6c34H`+hvS)Cr&V+N83^BTBfzhz!qp-)N4-Q$p#GesahOxa#hZ ziG+K+sCYUn5qusEy?D8L^T2AoeIO_uVk>6ZU6$(}Lh({Fs2+tKsS|VjW$PX}B%()T zEId3s5G*VLk&;f-;DG6`f>-KsU77DQ4aIqg+9Gh`%$Mr*9S?9kY zW!D+%N_@h!C{*-#I%MfU5#d-OYGIjDo|tq!r+yi#KgCo-FPD8TCOmLc96EWD;PCCv zm+}?3@S{=0M_q`O0Do-d3x3-IH3|z`M-PcEE{P_m#+*7fy8QffZhDN}+wHsFipj~f z`Smw;`=mtT!x~5B6cNNxsX1iRJ3P}yd>e~$!r=3{(Wz0Qhr$&_d8n_)!_;$cH}mgL zrZOTM;Q8MKcDk$9Yn^WQZIbD=O@-!)mkD<=uki7r#ej8U{!Z6F&KhGb-c!Zo0(01i7L3&dYWCYlPXrwSM@kUQ{InwKL}t$E!ZgU6_`;ggPrO| z^M6K|;!*?Kf41ubLrq6{zlh&#T5G_zIqdI+nOz}-U^L;tU>XfE&2e?!oklQEEPvz| z=I;P!2wK)_?e8OyHeFttTiid68D~)Vo&Jv2Ma&!L(}c}`oE!?ibrHP->Di0w%Jx}v zygg@6b$iT*#xZ0+ZhZthJ~nxWhbiCBWpkc#w%)?;M)UHvX*nvtEd=%2jpHfeB8|G`#f&>-``Qm@bJWEW%0A^nZ!j5Eza=0zR!JsP9XAadlwoY@Yn(Zoi^s^8%=@DOi zenyEK2Ha)qJ6!y79oYzedV1{oF#iefvC-+YvUwi4qSrBK7kiWJbJ+=|C-ZHZ*Pf*!FQ&SC z9V5l>-Q=;7igx{aHG>3_I==BByCX97UleY}x@M9?{UMf~q4Lfy zev88f)6O{#+?@2SX{m&IcuG=A3LZQZKO|(IBX*ByV~{0u#?+2$@gk9Z*kFHE)kfr= z@3zpMrr^7uiBE-j|Ux}cie>hkJ$5^1Qt~*;- z9dQyXDSM!rbSyrqWX|2NgWn}3p~t3X&($&HK6##!<dQHqwBC*S8`<7|7~r=(0hL>)^9J!?+qMA zy8C{ZKH%>yYoHL-$bP*J9SpS*3$B^Cm)}UW;rqd(;q!{(!J#Q_y|=j$s`EwR%+CT8 zi6R(sj*O|@>%VUUI*vcEF$In;?eH}&yZ0l45UN_bKbE&I7$n`dmuWFm2&^+wp`B5# z149K4noEbHD{zsXc)mid7zUiW?WYCYH!-(jELhDiz%4oIef;UIoneeH=ELN~MHnC@ z?NbWN{Gx#kl6*PE9p~6eUcyaKN%r-3wm+CQ(JUd7&-Z?|AdnnS}t7ZaaFfLxL;|y9z{S4v--)rcw;rcAxJbs!f(Fi-?}$qt_8Dnk zTTS=*DiO=h@Y~shgEvfL>uMuobIZ+BG5_Rds?6HL=Wia;h6(;71YyM6XYNb zYN#Z7@KS}w-Q5F<Dm@_X;0R&BO^mL+R<~)M0Fbb<%&^P(IOuWfZOzdCqyD~Ps*G(Q{ zLRskC6O`F-tI`k;M`!=^wYT?yuEq4qH@Z6V7#pwamw+WT83Od;JC0l`sw#Ytgg1l7 zu5@~}#Da{Bto-`w=qGYlQ1}n;cOEqxj$6rc6$8E7!@~#qye+Z6Z|Yl>J1ng7Ta1V& zqgvd}yppSQJ9g^#lU|TkzV=@io4oC!F;g4GgpO3$Abu_KyloEJ051S5Oak<34@#k{ zlM^&|R^CYsFjss&^IQ*_M9`t6UfgY|Jd%U_sJEB)!AdnNa5M9>fH{rW=~wc zoNd^c%wdn*nnwI`iJ$;_gX-}i%8o80s`K;4Y1Vzg#!EjUl9yuy`R`jG zG0axsf8mHte3+}zx|xgqrUy-IJ@3UczEIxu!Gug?p!jWo>ktP8TK>FhZj z9=bg~5LH$gwtFh)QT7zJUIl#oUEDJCPbf`f9U~P^HPg~eo;bayDHnN`p~5G`#f60m z!a2t2Hp*#+#||Fu4+O>ZI8?yE$DXbG^`>7$L?K)XDy__|tZZytuTFQBrQx7;Z*n3o z7FlpmaKq>GDPBFj+x1{vTm8hc1U5W8rgdi)su*?hXM> z7QkOxw;Co6RQy9)KHnTfD|#yIS9IwKntV<}NL4ILc}KZg>~#(u`2X%zyl4@6Jl>Vc zSguuPJ+P(V5^U-&aB&@-;^lnf#$;Lh@<;BgdS$t_xVX5aWQj1FsYOSKq+}-I;h)@= z($dk(M;q-Y7~SNTcAMpp7oC9X(2=0g9j5J#4i8A?8Ckz~Y*MmU$ryK!=(~HL(2-|e z3bmKw35{aBM8A82G6m6ryj7Dd@V+`B4fo}5iidO02g}(c=~pv#yBk?Ph_3qG`#Q^8 zuR(@_ZMM6Z7X2?HDJ?G}A`+4`DnDKx2(a-ZuNEE*XKhI%hK$cTBqYa5oL!vdC=!;e z*|EhkmSouC0zAnuqqF;9D@)Vo6apfutL{w#%B5MPeP-SxMx>h{T%Jh87RsvBY z&F!%bZtVoPQdh5Xbj(pB)wG$5kr+Qh8ji81m$$xc78~!(Oqkk|pU2*57L1|Cj!1b# zQ=&en*QIjc2ouUn1i3?tiG5Fu6AQwQ9Fd1IVI!o>NkoMaM)u5BBqPgK-~_hg%I}d& z3rk;$Z6kZ{KM6W)wH?xayc5j3jC#z_3FSYrq;h@1WZh5{4@ht&nFoztE)xk6?EvSwe$|R76Phv%^r;`y>iLMhYI%8U7TI_K$!6 z{;V7wtahSXSz9|Lx^8g&4ML9`Gf!Z~4JVE%q1_KNB9RbDBA>6qNW%~h5)v3jmW)WH z57xs^NDZTe2P$I0qTo@{Ms-i8A4YY4$I-I+3b3e_3i~ozYzoTuZ>$4#YAPEjOfHHM z|JvNlJCq>%#71tS=<4`NsMzZ8of;>cJBejc5qfW3;VG7xfjF1%y#x%QOIuz?*M}Zq z5@_ti6hZM}vNQ!WEXI%t(!^im@|BYcsB>A^Lur^f2C+%3BjUP&X*7s~ID@QuuA+3{ z%4Be~G+u$H7smv5h}Nh(a<-7ng@f`*WX2uFlxr51L!06nGX#0|H9v5qAqyZP_SoV` zMNj=PrgSGl!n!$429KRMqSS6@tMA%tNVw&oc-Wd`a-x!=x(!mEQOBCY;@2XN5-Q6v zAr=S1U4M5cZ?e6)gV=WU*1Ufff%wkRRz>vq`z2SOvsyN17dUHe9N3k~&VI{P&l%zB zP9~#e0)Fn+wTi7YFIAa&rXl`~h654Z_SB;af>c=;DuZaufy4av^Dr zc&h_ zY@8o*oW9;z;`wPcdu=BU#OgJ8wbHp#n;m9DyVEpVCzlQ3--h#QtY8XPtI1@oYQGyQbmG(?Mwb3l{}oKF6kT@tfx<9*S|M zGBQik&qbp-+P?)GCbftaa(R_06(hPJlm*eBd9Pa=y0IQspSA{RH5Fr8-DKV!?AsL` zxp|HQXK7{|y->pg2>>uXYM(iU+I(B?FkQn6We$TrCYQ*&!4=1uCSff{`l3E9_TFbp z^cnfOx+pD&wCH5u*RM-Z2J4T3PtZ;(v4;Vxq?k z=3@R!;Tnk$i&rm&{I@Vo|61k|{GWWP#kYILe`|B4{=NK9n-LIPjB5~GkSu2z9@H#e zx^At{pYcTCm+2s8YSc((?15U>V}0*LDX9oLQX08GC!dkXPZ3pe=KD*!SoBD8rfy4{ z@Fkn$eCoM7ku3eWQLJzv2*c}UNnD*9s|WI%`2<*|;xarPFIBuOHsASHu=8-LNgWk& zc99dpjp8>PWnzugZk`6w{6ZMX5`8O&7es*?hKkL-ARiWfJ@ge+t&78Z$-&|w2 zvtpLPx=GxI!9{|Dlv7v*Yc*xV@WLIk5QOE#R?*rLe>~MsztYM2 zG?XLjx_3J)1D)mM`e!sJI&>Gei7|lMh_3479d69Bg=4R0{v$54aaLTse1%K0mPPPr$k%uI{U=*@)GVW?%vc!uh`bm&{VX?mDt2q`_SFR;?MCBg$ zMQUGk~wDwoS<3h?_0qVA_TFNu1J!?RzEb+1)^m0G&6a zYlIK!#ziCPUa|ejSTvHC`|2>@< zcVI6wW%^bI7p7Kqy4e`@(jU!too7*A78Zzy1aYoG%hUCT5hofKSJ&Da&sHOnqmi|6 zSS-kKAi07oX5=uChD2a_oA9;CBCLyo12JJPLJg*^oC5T;$G+Zm$|XIgh?ZsW7Kf{` zxvG9nM9}5?c4Dh3;jxuFk|p}i7Tf-lr>};+^yA6Hj7v2hs$GltqlcG0?{o zt)E8a`dG&iI2e=%J(ogJ;OVUbm9Q-nUlq;)j2Whal*?bQ4d7FJ1txpKmq%=kS!A*G{q_76%>N$q9)Pk}A%_$fvMvfF8TwM&%VHxVHD|sY8ZI3+_Ge|+{HzOR8Uvfu}zLacoyRvaay>sP*f;d1Z(Dd zbG-3O{w29#Lb{xcp7|O~i4~Jtil%_R5FzYY&%!>3X(aH0MI&ho^^C|3tr&!V2mP|P z1ld+e=?B#$Htt;eAjO5M-C_N-3EmX=?I@hmFihNpZlbt|Cw@L;A0itwB^j2L5+nLm zI98f;FutH}OvDP!F3eYQ$=b5~OXgy`D@NFA=oMCu3Waf$_#kYMXN-U9@JTrS_OWCI zZyhf|(&1#TrMEdPbyzOJ1wT0?cYrp?@b5^5c~D@~>_um0xX`zi?2~!aSgHtBoy0_t zQT#l*qRn>UR$ZqC#wwBaAjrAQ^mS1|XvtfO1@v7bQ6r~P07slQ)>kw3Tru0SzFq42 zL#OKfj(vy<2r7{8>rLn(NeF9~Obvwby$3swoQx`vRJ*W@Fg?r$kHky{HE{P;Y{z5q zb9*?~JI_V~nqV%kGzSwR@{5YAemr0(IAGj4(D{k$ba)$^L*lf}Woz7T-JjuXVfh3>eK!ILT*mJOvmdgwysfuohM& zaT|qW<_oLhG8g5EZLC|F3o&v59gN((3*@HJhfVL2O7@-wY&j|LxDh^}?~axTtcB~D zMWZ0l$A%DbPTVi6$o&q}E0(_o85ujNsAdilV`5>LniZm<3ETE58CuA{&G`q+CS_48 zt&Lgt8G#{0qe^j-LM5-tS#wbj-rTvmmF6$mV`|%tk`OdJQQ>rVgi!WtYo|eFyQ^id z5^50Tv1e4^vGdF?6p%g(8U%{g0Y-?w{Y7W9^%t7=>d>Gn+Ud=Y7`LP8p{;*kEp z?lvc}U}vGp7Us+@1Cm&*{oc5A<+-`l+vo~X2;DGe=WKFKM908}m$+$=am{aU{+*Pw zdwH52makTVGxuX#xhIEJdo)!zQvRz`S7)X{D40q{hK`)ou>^})Lb>S8-1BqDK@2vj z>FN^!?_>PT(h`xv*ks;P#S+pR2S0WhxyF$7JlD;MAmX+KB8>(((7-u8@?{;NUjoVc zNW+8%Ek#MsxLSKKyZchyp9VMj{?02XkC^)_uydI5NA=`g^22m_@c!UpykTtU2ogcL z!^IINw@Q`BF9 ztbqJPAv^0TRBBmZ)M4s~JB`n3t-7f(YP);U)o%nnH4!9z`pPMZdwpv?m&B3&$z_^{ z!9W)d3>X|Pj|+ZFCTtGXMjf4g#ElpE~_p_ien0DHTcqtTADmhNme%QJRvj1WrQl zT@=#CzS|b*HVL6dNXHBEoNxAyqYGF?deTCicWZJ^vG|v4r(r*^~0P| zIk$NelGS!f7s0t$!zA6%qqC~tKL|I;Ha&21g3`LWXh0=?CPybSrkqp63LNy$!7=O} zg@s)6s;bdYqB7+{dX`S&dQUnjNR}yG*7W`F` zHnGhw!y<(TUqeP%7cvW{I9pt~=NH7SIkfd>;^0W2JvCY1-w2oJX2TbONFNTIur_+7 z#iH_-C{x!=4Q41!=-B9E;s|>nB~d{(w$9`7dxM;hCQf&>0{17g3PInGEYgBq80lr# z5bxS{jsjcl;xsE8d)LCk`$zb_LyK5QktlRR+(V)WkNBaf?uOeBPDz< z|C58>_|zlrODYZ`i(diPLSU&;_AO6g@rlyg-1T*M=eq3%?K~>HHaW`X`$>gU1uH2t z`d;CYrN@?~uaWe-O-<)PwN7S2Hck#UOJQrF5}+*np*wF}T-Kx;(NHW6n^05!2ddLd;$h798PdpZmdsx#k8NUblnJ=C&425R+$;F+A_QRf*2IFgL!2q zzU1G#x(bQwq#LUBYieFavM32o=s*k;mAH3Km4p~)4mq~>*=cLYMDXwZ`3&^SmeWj9 zEPxZW+5wSGV~F)>+cd0PtUX| zSWU}BX9&=EDQaiyx*Idw*~HDvlI$*Ey%Zzv8-M=2LhK;M#n$;&)E3I zgMM9WFfNNA!A~%o2rn7$X=>(rVrwQkM`k2(b}&)nwmt6}Wf~3Ktp8k-X2r+9v+MQ_ z;xHj6u(BoD>255%y65y5L1V!{3yX&Id#OOeG?AU0G2c5ta`%AEpIs14H2jl{cAeKv zA}jK6j}KRxEW+F1w*`6^QS^@q8qJtg8vqS!lvI3k3Z_KCw?8K`Y@xbz6m?NHC@10b zuBY&(KPdn2_AG ze0L==a||8^$I<8cYq&NOE`od&fqMo$C9i5mPQREV{QX0mzm8?>Sp{!1m!u^Dv>JU` z#B+Ok`x_i4W8W8twO%bND`7fJdoJI?#>It=B|BzZ9-n7tS(=4kSKGf-H zy;PsyyNnN^pYTu=E!lp49Zo$%m(Q7|QjN%a5~|QtLm?`lm~|WqQ4b$0lTY^@cal6g z$#4EKFIRvLx5U{TCH8xqMRBbzB(6URppgMh}QDN?^G zdg@%i%jDNLA-k-ui=7*l7TGj8H!J+X2nsqhnr<_Ck3Xd<&2hTfu?DAV;)HIosKHg{ z+*;~^B&Ye=_1|gY(4QhER*Fk_jwj(IN0Kb*7-+{&*B(n}H=6^{k)fOYTHI<;N=@@SYbT-S^?_-){#}e4!#n!nqsH`nUq6W4PNPZ2a zgb>EQMR)=;;veS6AjldgDB85c=ar)x>9^FjTvdUi&o6(8anTJ5gI5@@OGezGZfbIK zb9=nz%bBzrglD!(k}W3-@QLI^$2}>tyAZwx73hmNl(j5 z%OCCgixc0m<2H-h$_i81oGuvh;&nYUzcZ>mXbC3f(o#TWWiexy8uqCx51V=5VkXvpWTg0N`<{GLD05v*N{ zGGH)ts(ZOR(vMYE!`}76ldT4$HNWVR+n);xhX^bAZ5z_fq_fAXiL(~BR=jF|AJ&g| zoU9@E+RjwBAbQAG>UKn>9r;u|q>joq-6MbxfIKa21KjKkKZxr{D+2|+k9uR$m&eP^ zj@{7^&g=M8^7Z-OIxV5){vs_cLHxcmOA4+`KRPE+Vv1GguN7Jg;$bH$hPjwXzOq#F zYXZmnTL$Gw@jI6*EnY0RI8n}KXxx;Au`YT-qsFZ^Z@TaLJ;o%o<5kACu=-)t5!$C- zMTh6P{>FJB%iXWur?iI=dq4};qlI(D<8N|})(IQTKoB@u;aL9hf^K?l&RH}{xU>r~ z-i%a&wT`YN)EtTuS&B$%*na-p5t`zMpQowo!1GdtCOtjvH5Md?Gx%S_tvLnD(rmKAZ~nj`ef-qD-(e>{9+w4WO1H>efT#?+ElH%_!N8l^E1j|x5EyfRa~7loepqo5N&iAOyKTluMIPv zS=xl-{_2zji%4Oy1$XpGpXdm>9UAQ09!)*Sop6+FNAsjG8L;4~R{cmlcpZ;EoDfLo zYHVY!zPQ2Z__837u6D2{a_RzE_ zbrMq&76%Vy4!KV$6~AycVPn~~v8l<7YO=k7z_f5r3$dYd$Wq00IqAG!CrTrdo|Jd3 zRN^G2(a4S`mO}~?%Z#`y#;OsYxrQ*|^kwNm_&&U)kW|2S&+>?OZH#Mja-AM)S1U0) zd;Zs=jBDG5IeGTo{;8(N{T=8~OvUmC@vr&QiqgtPCzxeRYwr2Dq)U4T`{Y_FENUxm zp`fmfjZMHzT?8-~ye|**{Ttg@ge?mWMv}|^9=2CV>s;sWw%kf8mJ1}=@-a(j`6z_g z7?VB`HLJC{;lS&k95q9wIt??9akP=#**JJ{hPKMI=aV_^)ZVM{quc#ag)C`-Nv6NU zg&be1!OO~GI_x{H(ukh12ltl zQIt#$=n%=Ahli%|U%Kl%OS_91Y8vN_{-~*s&djvHrg}04I?83FB%wHzQ!!c;pqYSv z_F2k^{SbYxYmK^D_aZTLFc|?T>Vi!fwcuha^2ktmSL3nJ{%z?n6PMl6Kp(amX84+( z9OdTS@QZJ4X=BT=FdTityrKQpYT2ESaI5a6ch8sYVvpvF!MUnY;HgmGE#l#}5L#u0IN5nurR9y4R3j*JpG_2k5!4nL1oa3^41o_Zd zwtwbG!pNl?rre~lP@VoB(q>NGky_HRBdSN!6H{X>*Q4<}&K6pqGZcd3YI60YO!Px~ zE4Xn!;7t5B*+f!Wwsi}d`c7>mm_cO(o|0)VYA3MH^&J6>UFbzO zk)Vo8MpYn934g0QVy!bQ$(+m3AIgi2{#;+IgWf<*Ap{7lf`zdyY$vMpZ|lcPt&a^0=@rj54lC?MhA6 zUXNdi+0O0IXr^zNmvG^i4Q2CDeo+~7o`dDj-*YQ%aPJMHVrvT-oBv`YWXi!m8(~mltnVYt5a8n2qi>gW2 zjaV5M!1nka?@Tr>#v8YwM;Doym#oQ)9c4grU?DWJ5jIc zA2}5%1h>gaP$cI{!+FsEX6)*DNI@{yZeuqAkK#hp{rOe=&B zI@t?UMI<&hc6P46zIO6yTGOSEjxv-|xgsFN?qgu=7nTqk5F^SFBVQ+`VC|dkV|h+; z(Ofr2s3290LP<)Ph3o!_&xnp=iFfXDN(^y^Oy*uL@FtA{S*SxL^l!GuZ?vb9j=M=j z)`hQ=wCB~8ZP;?4YEBt*L`N&$-66tzhhouFt$?$c2XXD)bL(Xgr>^ zn*FDoS$gH3pLJHtIBL0jw6`$w7t>>2GMq>;qH)3Jr}YBoq>EQ ze1T)z--{8RDN-5vs}@~VVhv?q@}H37Cv9~`{ogQSJU>1szkCIg%W0MGUQXGpb@dLjXY6aJ6k+@_)rI9*P9K&a#kRS$p{cCl+F17XO}?vy*kPa@;}cW; z3KGsDj7C?TFdz%gH-T!qYR8h&fkp@+ZSVZCv@Bb(ni0{wBcVQbEm9VdeJUrAPvvQC zErOidqd~j%5h^px4O&<^I1*(k=B;Ep%5FL<(6!vnoLK5{y@L%d@IhL9mK+{6bLO$t zwAI_K{Y}Q-Uqc^8a=9RoR|QF`AF|)rB%y;F(M=}<_clwDA25q=qY*i8Bg>8LO*I&< z<7aKfRw?s>QqeW2bHl0c!QbW{A|)>tb9IiDWPucqnNJ_R9FrWEs)F_Maj`dAV18@9 zOf7{#WM@mF@#6@ot9Z-`z4dln7Ott0p-OULYpx&Pm4p8G=rLNC-Rac#qDwe1lqME= zj{{2=a`wEO5-|(vIN~ELg^ZHiW)Zj#%RYs!OF44;gdCvZ>k`Ln#(CkaYZAh|#$^1k zn>hLN@LJlLeElu(#`u#yKE6Usble|(j_u(*}IdvW(eT#-d}R&AwY=VnL~W;H$H z{K}G4y-a$GyL1`Bf)3Su4Li4}^B2YA5;@VD=lznz3l!Twb(@7|tEp)nE4h*_H#%9L zsGPVn^`!o>4Igqs?tvbLc%UmE{r(BtV`=W`*W$ei9R05vnfL?djSbkJ@2~#9j9(MG zswSnh$Pb7Ih7GjG)|-E@MjXLUTNb~7jxtn6U6qCwOe4PI_-3EQNj%yjr*hQX9Qys0 z>cNdrUOQ9}=43pqu3T(!;6`JWJP8dO{z-;bCMF?&L$#0=_C$@g45z*jp2L&t{@0N$ z@SeR;Y}}Oh6TSLngQZ$l5-s6UDs_j0z*0$p%2v=X#53(xTSKgmU(FIwqiJBJ)P?4% zvtT7c3p=-AqooPkW@_Q7WruS+rkwA!g@38GCXRJ&$6G9580sUT#`4SJ*K88TQFBtJ zwCNt}xOE8%*85(6yuGsq#YLla>hXPr;+f{D&tf>VdO{oZQOMAGle!ujjZ6Cm5g=mk zwLGj0ov9s-oTnkG*5%8FN7{Z^vT;5tzrJw@1kb$!0g5XH_<0lt%s}RicGOIXxc4ez z313$#$diS~7*o24WCx@`{x!#{V=kX|F-e@#PLj364nvWKeqKY=iLdC(Xofkseh#-b zo9}a*u|=^|aeB1B%Hfzm7hOM}qJ&aAc532KFKI#GUtG4Hy)zzm0jt~S+kSTv9&zzi zfYqi}Q3GM25f$t_);B}0;H773NjzJ%(-P?8=rn;5WP;BzAG1k>JJx_zZ9!Woc(X9t zNUaP1J|KY((#zmsQ zQ@PTnmo7bXX8r`i(6P%KY6|K25q)tyViB$_N=Hzh!xGq_us(slSO#;47nxjikIw@0yrGf z4Wzn;8$6f6A#nzL1$^rc)W-W`Du^=-L?-*hs&A17{|mDIuQM;bOng5r{{_mq9wWqt z9B+aDfxDZ4%BGOk{}R5t!0{Mf2>c6>_mab#Hvb1I|Ic9=0N}sy_5UXn{vT-k|0j8` zA22h&a(zaC_KzANke+ioxV#@A=dZN7x+v(E55d>0o4vxr%UAWvlb$fe_ahjGK{ORM z%uvkFza;pC+}mb_rz8`AYB*bxR~DuwRYY+Zh=c(E7tQ;xa{fj9 z`Bb3sGV{6@^W3n+exiuB{+!~AoODWG+J zUrTIkSr-0yQAw`m;%-rLaj5!4K!oMS-n#;OzOu*}HzH$y|2B+@Y|PT+u3D|Bd?~|A zF0$9anG5ot-6(j%)}3AoL#9xd2z`SRU*vTt1sLX#b%r}FlLT_s@!O@xbc7&d40e(% zChfm~0x`t+I+Mk`+~}pL&$uC2z^a7;!qwOmjo5CpDr*xfGb@~Qq==od{$;Mk>up~^kfa8u*DTd_Gd&{ zIDLR{-2XnU7B+q)?W~ie!ue&B%3^u~wG7h>k#Qd{_EChkOOQ+jnF$i)aO%zqxUHmi zV@sfEjHF+-4}g<3!8k@#TBMWPTVK(S*{6jy(Z;~zJ&ri(vT13nEVFGt|3Ch^WArT9bg;g)_Qo5-O;3*? zMCI@Dqk|B=yo>`4OyrM?kM^$#GvnU+t5v%K{Nub9n$W`;t`v~+)I^|xnO;vt6J-6W z)6?6w>sgfMx7QxrKfw8XmT%vBc;}G`%!6$$(v%D^O^oIuV2rf7;|`ds19O-{^Ygbm zl7;23v9(c?vs7t?Q&b$4P_q;Na8*H}s3&7$W=KFnm7%J9dv)r`=?T^?%(@keNi@|@ zySQTn5#_{IPA-fW;A8}`4V%gWI~9~DB%^Ksp1g`9Ij}?_vpO#}!v7{yonWqu4Lm`s z1RW;$CM@jxLrRLqY2`&F8JFVyaromlE$>z3tM|E<6F!TL=lfX|QKqx9{P8C%l=<)< z@cy|c=mcJ$+F)3lL%1vOkkR7`XxC?YbAWWaZNDBZ>*de~<`=;iH(@@L0U7^-L3f=A zC+*g?u*elzd&d$kD-AxiOI!AB3+MWf+7bZ}f9|7QHQm>&s*=rJI!Gxg@@G=OE$ftv zO3hxygz=0pT^2K78Y%B>N8#p=7}NrxRH7%w={)I~W8CA3(E4R3@&Pd37(av^2nb47 z3|YNR)DaNS2T%u5oQ;$3vTrw9Sgvpt7uF@~Sq=*ajnYOC#Fcq#3-sjMqB>+f+I#8% zn(C>>2w}JQUv<>M(^QlN4uAFo^Jpe(e9iQA1mtt${Txd~>AKu}f?7j;jK7DM2IPP7 z|I%W+mIG-(g~yC0(K*3gYOm?Ziw?WiV$-LnrSJ}ivx!0XB#&?M7j0b-|`s5 z`Y-xAy^-!AmJcrfvVSS0allS`4+~Ao=3^ov=c1y^c2=y4=wPo>6{>pH!g4A|GM0f7 z`0XmKNU(3T6aLU)>xVCVXH9|8;P-g$Y{{yoRy| zn?1$Re9Bw~BYnRy;b4bCo2_r6wVaEVQiEP4sTFVV6GX|$_}qdFkT7FMlgXo_ z5TMe1$=zY^l&ZD15H&Oh#&>dJM}vonGiKRPPp^~>B1LxAPk(6hk8DBpkEVPc+h|Bq zk7j%Ls)@Y8DXjV%qCVHuP2_VAM&XbNs#B;DC{7RQngqnB#uHYskDG63#Ml0%?9dB? z>Xa_1nB@3kI2thReQ%K6G%6ro$mZ%{|M^Ih@m4tqKOp*@t4G&kU=r4U&FKFkQ13+? zvU0#go%b#*9<(z~;?q633M3ZRbPphr{#p>NWvL=qc{WO>UD_~3oH&w6Imfi&2~B(JJm8P}(G$jp3lTKWpb4IEB1+#J0;KE^N6Wql?imzAbhVdIs%gv{&jC5>^2vS5 zIf!Ax>Og&=Ky-}P9k0gB#X$_*K|RX!vdYSYE1syM<1#k~A=5NgUVdvCw}mu5->)Cv zW0k0T=Ig>f;=$5rsNvy^Qo(h|5k9oEDEnOH^y5}a%)J6SDut_Ap#0)fcRPhAu)l}R zPbyai?4jl>Dp=(6^_V9|Qe<(#*lela>;az}n_xz#pthlDS?Ir$EH_$Pr_&$X>tFlL zwhl+^3rD6NgGB7Q?Z4NQZ)w8+6k`TWUP61@#Vcu@(^XE?ovl|&K5yP!^|U3 zXkEyRH=!FPdBH(Yt(}TDhhn=67esFM=w<<`Ory<)Ypo{4gC>^Pv0h6=c{JV8#h?}d zf=9|RuM=Y=8Dfst)5_|xBGnkDaeq&y#&y>i|xokn?*N?gn^d?{}RBB@TsMvDKgr@>TLd1(Xu-KzXT!UKKFwvn}3412MK?QkV zFPCjQ-Oq>>bVjVWX9LnU9M$Xn=cV2k7P^||!RbHe9fW1nNJp}bxDf(#f#a0LhIE^s z#zltg5hQuLG}a$2E+GX^8yVgb(fHJ14;>ncWhY?;4EiP>+EeBor#M)tF2(s6 z4fGctnYzY5|FhxEj%`5o7cUuw=_TG!-P|FpnqSjcQ0J6mu+Q<}Mad;Ju0v^ooLrCx z8_*FK<$^7vu-nCQ$7C_%tk^~(9u0i9=1uY98@+k!h(J0e9my^Ae%$g=bWGGLjC3M! z@QHSRg>VRUpFYde<^M>}OfhEH8GYU?7`2yo%Z3p8!L}XnOAZ8j5?MY18z`FM$%G_$ z)zJKR-d@%{nucnx&cW3D(Zp3ms)*JYgjYeihHg^iQzBC>&hX3FoWCrNq-~61su3Mm z8#o&z#pPbyx$(TQZ4M{xnK{}l^M!>rb)JoDxTBVC(C7HtjieJ#ip@zm|C1@Un%^;0 z=3R7qzzy}1hgCiE1Vp^+fJ8Ujdn}ZtWv`hM{G-^wThb6{r81l8pe;i-zQ9?JATuMQ z#@)yk$-zz-JpGtH^XMq?dwx63gNG94JnK7!PKWX@as8l=kEldtYodhz7~Hkl{0AR5 zy90-d1r?^j5$bo8eRYk%X|iw&9oqY{ZRjnpj=(%mJ~}pS$w_LIv>bm0N_eBodQXN3 zQ+>^~&4y`#7Zd6T$oZGRS+6f1eVt?T3FY)@VSy7Co~?5!=utvQ>E!u_aF%px^9s~AGyiNekAH~EhtOwarI6OS zISt^2Q|gPbAG&B9L^u#3_Cs5;V63i=dKR`f67;5~Bup~a`L5t4ZTXl|RZz^T^`)h& zEAO$`OQ?FP0&EjmQ$wHeLqbUth0B+9>wSnb(0z9YQ!qJ)lPlKUE?y7GcwW!%s_#9- zF?vv!Q+4y5|vG~U>&9k8bHFOV%u*X}XKvsES4l!b*EHz--ulkccrK+m2Uc?$8L zFPLT^)>P3*k5--k;}E9DiSV3!BAVPQIc6mK6k|D+cgAks^0ayNjQ+qBqP^O^vP0kJ z)$aY+t6AUA^G8BK64>E8$gZyyS;~oeg{a2<=#B#x8k^TZtxPDMWi#``(@X1lJC znjo+R``Ss{eg6*U`#E42Ia2UESLynB<%-*AR_ti?MtOSJ{Bd#=qtTdRy|}*aK|kGn zVSeg*%YNw-KhN*znbP)xcYp83>vLs)sqN(^%1saWzzT0^bH3&vG``kD_bM6idJ9&`H9bWqD1Jfd> zg!aDu$wM~6t%Ay842{bb7IrlrEIj4NP3EKlkShD@?L~IuahDbxV1u}2C*(qMY@IOUh>*AFQ|k|4e#$AlPXJOSaq zYNT}F#+I(9K4rk7FC0Cz_ewn%hG#@15wd?E#D$nL!Vd3BjsSZDZP}b&DdpdlTNWo4 ziLR*wFAXZssAnN00(kCA`Fi-BlA!S9>Iy$|(o>sfax_ND6U&KyVROw0R**X`40s<%K!w`=Eii>#Iqw*ZzAI&2s}afkgPEG$or zT2CQ)6IfsoXF6a{k{{RJ^F7!{tKS4G%tX%Nie)w7ppNb}mFZ9c*HfS4nb3BC4T^4- zpITS|PaO?L8TIp9#}osQAc(j6zH-}w*^$8Cxz9oZOQxD5hU;!b6qK2drUs3$aA4kX zY}0?ka+_7;M@-R&>fg(zy`P7wzYfy!3H8%Dgh?$|{K9q+JWqea@pjnTL&WDTdTzbm z-Psl$p!#0UH_rx;znk*h9XEMG($MsIVAe!Mn@L&CmR7BLTg1!m6M5r)+HzZshm?t0 zK3{*ihvFO}90O)-yMDY9i@IJ#tlY6wOnl7xei#Xfdp}Q|p`jizI8@ktWf$vsQBvvq zwaW>Tn6{S=tw$A1uwycsDIA;^{W6z%VP72!V!BoDo=IQGzAE>B0KXtI_4Oo_)+>d! zf`$5SzvxgPFk>V+!9)^T%c<6JBFmsz%$f@j)RcI!@l6C4bmH}mrgzZe2)X`-6Sh0Z-0yoyIxj&IUvzGw~aU&vs3}5X+CwSGqSloh2UuC{)`<8h zr|W&_63*xRtAfT!q>q2fV7={Otr831vs2HTsMH_StWIoDK zwJam6eIlv9=-y6wmDrF@_)uD1n0-_y1^AtnRRX8n>GnDP>xU^bsvwF~7~(z?ZwxrB z{aV(eP&CTQK1~;ad-3*u68hZ(_uGMth@H=2`ByQMvY6SbZ(OQZKQ|ma`&`3SlC-K; z`)9J~>DzBsp6gn~vjJ|n4>~C+0N3Y<@8`kS$Ec$x94;|HSM6lV84aaaJ}ouvihN?a zj4H4Hi}K6O@rBtHi5>CA+3Vde#K!A*oVx!eyipUc!Gy};Dc;OqGeu<_>SyS6=J z$PiyIuI0Snx&69;W5INtBoLD#QZc9Wf1eGXb#T|5c3f+q#;U}-w8 z!8ePoVBvTG&1gOKEb4bIh7{S;n*jRken9`7=QNlXsyJP-qN3jV&(Jt6g&7`O#8lq* z+u`8bJ*;G_=Q+ZCt-t&@R$ESkYaj;@rlTGQih#eL;j4UJ2K(V1{y5c7<^cg~TeF8) zxa@NCJsWjp4FwjPw*;KSPA|h;C+wE0O4KDICaD8cZB>U)Thct8zRTmj>+WKGFtoPY z8ZJje56YBfn#Q-Ec5i-HU+=Dh`%-HhSXmkjCOq%5cqFf)1snYla-r7!%~5H2gY_Qo(!rER-R{zfcL%WedzEssJ)4-rSmnlp!}d? zI~>%|gxBQ8M5_V5^I)#~shuMQW&`xRd-_$5xUeIIE8WE&JjqXd5r@&7sLRZeK=18m zAe?C4#N_gpTH0TR$iBY;%1rUy9Q6)M6&gOP>4mkQQ|WE}pR?aTvre0ocR=cAXI!4I zLkA9M%ho(Lm8B-W25hsF(LYZ)ZKx+@C7;`(8{jY*sSoyZO8_X)B0qx!e%{WFK(^&2 z7XG0PHK~s~Z1@mhgv@sltMqf+8Nzmg~TtrF4p6 z1!tLyPr=FNH-hl17$?-2-N7j!DS0saQlr!3#rRBhK;+fZ600r5fJ<~*0CME7t(2ss z`NrFtAmH<{>9?rkSn`(VcIWozR&(~pBrCTI0fDaDWqQ+q1#IQZxmB)<&w$~S&w4G! zK;`vDit&~|_rwO}H-nV0L#aNKCWl3n?|zD}@xA5DTLAQxlC26VVe#Z}?c<*4ENm5rL-3E>O9!D|!e`XM5{1g{4A0#Z+V%7Vq>X zI=X3QG;yphN=797^VcOy5nRPtSU;lZ{d-E z<4LLhqS8J|oL1{5NOmjBg#J43X6lXizKc2NfU~-@O>_~Jtvl=3K%Q%3Tbk4r^RdJ2 zPn#B*2#LUFB^L5fR3e@?47=A_Y(_6E zBStlaoVea5BJet$7oG9mXRZ_+L@|!ES#5+O@2|NRy>+^U?i3ZeKLFeBtKZAv15JXS z7BSXUV+=JDv%y1;O-pOQ?C|js{?y-#jgSGl?{AKHUEbQGWzsPpz;2P%`^oYRDXaU^ zZfn71uAC1xR%e#Kd1;lLI-ib$L?0=D?z@1m_v6ntAe!adga|(qdRxr-ORufY>udk= z_Tx;qRolsLgrLb$3F7Vbk9WXVTm7t=)NaFvNXuvJDaP#+BE$@~?ic+uv^wD`3^c<`Oqofx-kaC#oO1-C@lx?Tilav*A2<-OLmiC_s5lPr@aw)ts(F8DkEO^6{f8CVY=}p z>2?Ksi>v8XG6+}x<%)6yhVyhrdlgmFU-FJSzVcC3ebD^p_p7g?@I_-)>WTI*KhCEw-^Z=r zJXQN`SXr&cZ+TB!E1cwUc|sC-ZB)W_Rwz%ej^`_3isuK!Qz?($w7Ty)TPXwLnFIC_ z5eAyc$|VwE@hebbH37$+u2eM-$!V^@Ep0u1M0`Gj6sYre5P^vA<@D36JAmU<=KOU` z0tE`lc@6mV*V(o#?1Rr|tEg%cS^-2sclpJ|^5f??oQ}eu4650VOHl&)gxKUFZcuv1(0d5)IexLek4dt0ZA+ z%S-~|bntbp+J}XO3=j>@_fpS-E*UuT+$Cn}?5pH1XU8LEeBUhKYQ`o^@`9L-uRUtX z#zJCZ^B{z;=J@C}YzpJ!;T2>HOH0fMO4cI(7@p}NmnTtV5Ys$!tIp(L0)@+kf00SZ zE%&|9k}ZCG#u5@2wzSL;9A{~B=i>qfEs%2U{DsBg|46Cf(gJ<{)^+d7mLVmhV4UhT z7AGd5tjm>j)_Ynh)N)pw4@CF;syj)K!%jQ)i`|==prWMWBe3-}T^8aC8AnxZK$4Dm zsYd{~sXN{5TWpjyQ5l>!wyymh+83gX_>E-<2W?`B(z=;xNFycV(S7&id$)iTV}}DV z%=M(;K{vof6e)HswFs5Tw~Q<;XyT!su_=-$*MB(P!|=~&#hS%1g>;1qb$Vn3y)bwI zP3VtmP^5N(-g$;RSwT%K@ihdLces@cC-S0_E|>zI80ZW_4jTT1l5~IY0R57DnHj-Q zyc)haf|~+aNnnkIP*OHe<+E`z{-)W#@uE|Nl{s15~~KQjtefv z7e7>H&K>1MZ(}gu6RCk%5Nla`7v`^H5W%dvan$suGBHL+pf% z0UNoA0Ir(_$^jSu8!5N{ypA0eo=o4;eJa)IjqHSFGCGu}=({(m;euym3WXW%&U3)xKAYs$7wf<&5+7>ai9!gT_>%ME2tMU3)f1HLQo*SF>c0$RJB;0R`;Rox zB2;UeLYv3V{N0hMasB9~dTx|m%>`#in=+N~Q7I(pM#0CTI~t_gg<0pQ$Nk-O?Slh? z0`)u+q00|<=dAW~MJNc2$)i0X87E8PuOFh+$t`zyKnZ8TH?>oB&g)9WD@b>5#MqL5 zm!z#ck^mjtOaVX2?uA2735dpMymIBat9Z(gic9F0@lf)qS!*?Z)$(t+8m*RygFB+4 z^&#M;HVS9549H6tTjd8%7KX{A66!It1dw8pliLez_Ej{BkhmAw&XS>+T8O!GA;Lxz zk5sG{X&JGs1Ra&awL=j_YHzP3)~hi{MS1?VMzGt%-lO}yi;nu}-e`P^c~=581mTE3 zIHQ+l?uW)iHnCtNL3qhlSAmM1pqbtZdOTrj6C8pS3)7nk4zvyMmkOeVFN#UU;yET; z4LElY>8p)QhUg95F=$JTW4FdzK}KPlH4v!jM2rqKnhi~4O*(T)2JT#+h7!^u#!_Q` z5sDNUa(E_ZT|3*eyLWiHlbtYSs(v+HE7-lp~Zm@_xU(aUtzbo4#M? z5fdqUWq7^MX7>JZ8BV=5^>W;&A?)jl4c8OBs-Up+iL54BH&oX2owT-FHwoz$k>%@o z3CF>DPWiJ-&>_(J$@cWy$WpR%!suw2OQu3G;BV4s1X=Z^%1DtGl6#HAgI-_2NhU?4 z^YB$+)KY3}D6rTVI8`8zTs+1Mdcr?lfVN@{M}O%t9mNPugl|J5*CfTyS~&=6C-pBq z%QTETjoFhms^wx8Gzw4D^!|*T9_b@Ci0tw?{&zBH@dP zx?OMcl<$nm7MX!8Q>$ZwwNew_ovUfKUofTb$k^q1YY+AtSb=6mQiu0hoI(3L5I@j0{T(dqsI-8> zqhYIiMY7#^FaCPy26BBPFc!F=ElW*aG$cjyq4D_omj5q3B8Lcn8dEfeiX6Mip#;%Qt2*Z$>jVBi zgA9Q9L?Cz;iptwNn4;~dV8KSak8}6gfqbP-ChVL(rEv?zxQnd1M{o;%`8w)~hUs0i zP-8CV6FNdGKA(l@ed1dMQ!Sth5)#c>K@kMX-=|t{>pfP()qA}R&hM{O^cTJUS!Urt2-mQVLzlA98Hk-lF0&OvTa3Yfbld)RI9VyA%! z3hD0!s=fJT{5%h z^O-=Rz-f2OKovMQs&hhAjgfpa($^trQ{^1Y%`UwZR{Z)z1SMp}Dxzu@K=+m-?`)>)95J4cOzf`v z2dEgaAEgRRmyu6b{;UkgwpwxB8M{S(+Z4ty>C%0Eee7tEUL_~U!}_d2=AjU;C3V!n zni6AU1IA0&!ra2M?xGov4)2-7vI(Ds3u@K0w4NzQ?8$-p#-eqKDpKX0v|C7dCt5et zjYr&+hT1m?qJl7%z$FQ1?$<~aD%g!F1S_)uJf1z;lw}$vh!9Cgm-TBU1sLGapT6sW zRK?f9WK#5AqCI^U9g%YEsNojcj3)GobVGW5q@ZO@Fp$Vy5a=9`eYA`>;-6RuyYh0R zycHL<;r;{JmK?`$AJ+=alh0D9fs%v?M4Q1MPM|DvK~5z@L_3mZ4N`O8I>#2kTLnvPe2~}bbvDQ?dIdu=)bf?+C_@u z5rY&~BJ|lg25ScBIkI-RC314-by8((t^&wWkB#8}JhxSxfF71XBuc7J4bh-eU%%?P z4fhPEE)A6i*e_s)?cZHXIA6GD6PQf7IU5X^4p=a6a5lh|EJurnzF4}bB=R003qyQOOB8>El()h=unoSPI4J#XhE3uowGPk4QAUidin2@% zQjFVuEu$d2QW)d~2JiBdB8df&oLkLs0O8ptoOkLAO8Ufv$6NN;t7y0?{_ z8ss+YPj)O6iVIdhX^< zNN6UpB_G}!u@^$~RyPHE4lH&1Wp4ov+a5&2(Ad{ZMoFvfg+qjzrs6lGT{)?xHJdjH zI=?ew_7@l@zy{o~kvC{w=lwhn;k~PkA&TLEA$45(z4Ad;HkMS3y*x)tB%13b$Hs=} z+)peXPe!8pXfkm}XK(jk*>Jd?zsCNb{3rMRANlsR|H*fX`afby^nZO@oLFpp{c3vE zo41b@(M}{BneeqPHk1|}xG{v;O=UTOF`s~!nVVYGTV_4AyWZwzt4h z{Y>o!FmUa{MO_9}JgXp*2pO{1K(BdqZ^SRO=#(WRv&B2ltcFX&=moV<&A3$C`!n{N z2HP~ZtZKW={sv4yrJQ&QI+Bnd9z2)|RUKITJ2| zy5ZpoX*!jyE3drk(!S4gi9L>yI$dal`(7^c)i=1-+sj`(-+C8)p;{>{J|NLDWv4T5 z`qSU@=6jkRRTR86ck_LrqqwYVXD*;u&v*NW!4mezOm4nUx35S)y~T+jE%v}LO+BmT z>$O+Qdssp-C|C$^)vv7V^E7CiiMbIK6=+%ZIYwE%%*rI9n`7>wG)=W;*4*g)-p}j( ztYBN6fy1c%hXtWJY zO(aMDgr5((U(SduSOr=5;6=o?W^T`L-8Yr>rnEhOp7DHde7}xKr=K40QBYAnSDQbJ z>gz3yoTy63`uhn}&M>z;JipFtJF)hnJ~S>343fzdaru7;XD*bC=~+sn?g4 zmF-2bZk1M0v1;pba6_fw!#>d`dv`&j%X|-=oVPR!Og^@&jZ(=2n`tK_=6x6P^r%J!x-tgNx z@@8^@+1-fedbnI~<`OQr^*j<6LBagt{hxkooAU`N8J-}7ez5Fz$H!wRNqiC=I=05f zgHpK>p22=W_`-rnKb110JVdY8<|s8`pdr*$9VO4OY%eJ(D9|x6S8IH%3)18QJ#G)o zi|5t7Po+#m+7>Oc42bxcEoc{cZ%2OPP7iD?Z#%SVrKMpcGQ5H#3&}5fU!D6trWNlv zJ4#~Fk!DPSW<=%>%S1*+>6TR@5#KzpK1#chD9kH7c0DGSnP+KlIzL3wfrG)~Li`E1 zp2)y)10giGyjpR*ve6U3Vy)8bv>1E?g9UJSn>?JN)Dgu*NB83V^6T-u!n14Npu_I= z+9gKkZ()yxGt5)SL zQRCCq^|hDxK^+;oZ_p!avG3<-`Wiw%mK2kpn^)|9iQ3-m{_1&wN(qmE8kdL&@Y{(> z0(Z0-42P6Q*3Z{fQ20J>26C>gE0_Ef(V})lU0ogjnyiqfd7Sa*bx~pQnw829nU61i z*=OHak}{n!v-EnCbHe(?FI*&T>>B*o+XISeWj#7H8tpDERb6=<9~kGLJe#eK+=d2p z9a#_WhX)u{UBfMSpqvh9-2@jeR0oXF*ID(|+aRs3m+Kc;JXscxBM&^dfOT<|zV*bE zm-AHy2F6JbdtNs#bnw6kZeCT@O^;u{_GahmY8nq<+e>0MXacqjd^kGG>vj}waUt`! zzp{$P-W?b=>~LDThQ>*FQ#ri+K zj{7l7+V0oaZyeIe#Knb0PDG?P^$<^R+h)D(WuzAAAu0;+I#A!rzFH^j^Op70WV_v@ z|G`o6c)0d@hi2ir=`1SavNSVt{LP6BRR{+IQ>oFZFz=Kqw(;8E+l#QZg35zTm7z+r;~}=fkt>KB>A|xB0Od*Y^Og`_48G z|MP~m`!hoKv#7Aqdon$V_w{DF-m%X2>#56Ozm1&#pC?C_OY``NYrCT2ro3oJ>Ofh! zZHrxP6Fx8AGuU}|v-Q?-+BL^66ifT^Sy)Nv#c>lk!(H5 zpSthW0G@7(!?C@+Jl8FEUPeY7v6%VYKXtzjpv{JR1x3fk$KUs}<8tG^3HIfC(oRk+ zmn*9}wVFMbr&j;Mev@fnv$>HGGoy^mPXoTLCN-Pba9k9lex8F_#K-S}-u@B#bc@y+cb`eiFYvu#Pgn@uN*92Y6j{ zazc(CdW~{$qi_2I#YDR}xHlHEnKg>!n(O_E)~6ET!V&O7#Gu7-+5Th`!K~pZHr>3} zIXv4$ai5EGZ$`b<1t~1)e!SbfwRIKXW5V1k=Qt*iI5*65Z)ag~YUOQ7_3GJfzL zB>C+oJ>Y&Jy?|mFfVqX0&*N$gI)b9wdV8D4PJU!$L)B$=pFfuw=Y5zxC^&%Ix2w4L zYBvP;-wh@%ZZM*=bp2X|Tuk;>*Zn<{=zv3k#dVlXj9R_V>s}a z_{v-^Tex`vo4WH%WNQB);Z;D$SXoKIPJcVW7ya2l(m4xk%Y;Q|?&j5NULP77f`Yu= zl})wn?DSq;RacCQ^ZJBO9DjHmh4AI8)o|mAFEAoNe)&a^5+DvR9F}QnYEo57?p63c zlOrP`%Q#5b&}f2@{pRKJ{5#yvv`8**(M6i83HMm#B7i zu-Z`6QVN6yAi}rJVvigs*k%hoSqrngU>5tD@|JU{GUs7HA?3n0TI=DM2m~e-*F?6?<0&%ysV7vJi3_Y-HoaU(v;}CgcpfFi2U=& z4ihEq#}{fosn45Ve-}^#(CYLES~NKPPtr3Z2f!~838w} zf$dQ1bOj-#2dvcI*q0AFbei6#H+O!DY4?f&J9yj5G=YprCY|5?>^HhVDDEKQ@IkE@ zPmg#h>OjbJ8BC%t)xWXBz74PqI`PL0wWS(E(wQl)(H@x?X_;N$3u@pHdD5-P3ne5U zP;lG2NsCPkm=^U#wF|~&MHEEhy~mXaHDxvzqn0&_-QYA%$DhU)&BXJG9IOH0;eC{I zkeXMr5C|t6whZnSfXdykF1J=kd!|C7Cja*6yUrTCsYYZus4qKl7_etf4&bLlEgAw@ zqlR>wh03ZQRwMC{Ce0%os!JT)nAu<9CBGpz-rdAXpg0LcN5%3=kd(_L>7iDOv$6P_ z>o#yweD6{C?BydYPlcKWAD^7e!NgQ?CV~y>;^o)3Uv2K;p^l4yJd63qJCqyMsxpUwGF?dj6)V}N>itBP}&>`5IkI&NEt0O_^U=w7^gB^ zpIqdg%N`@KZiYXwOS*(Yn;$u6-hex8UvX?thA7Y=+e~}eS>j})aHYcFp%hb(U|2S@ z&3YYGd-?Xx5e|?2<~rc1_sZX&D`b--0v%k`R5WALgx7a>j{9k2b#3isr2k2FvPX_A zk;{SI9Rp%wjSV~!O9YysiOMIbCf5(T95Y#|e_utSf;6?%tNjI-%9>W$RP&5UT5eb_ z8>9d)LseNx?u@7s2aUoQLIR8=dMu>66$&4p_kI}o=lZW(<^rB8J8U+t7KO6B$$FiO ziHS6>B)tZP+D55Q%#Gm@T+(C z?P=q#x3?dT*U5Ko%-H8OrEtaC%xc!z`lGGUaDTs!sy#AROO;cgJe^}VZDgWDM4+{{ zmOfRD&z{tqN3RXGeR4ldN)jsMSG(5ok9X6<@Uqe~KeX>As5LXXtZb~5m6L-bS0zD5 z*Th6b=F$0Y`bi+j0lejKrn#b$?%b@jU&kT_0Z1%|xd13Z-3`ZcfA25{lVlpYfC zuN5JtQ7>AS97@0|(tx#;Fzh#Bm>_vX6`}Ya5r;dmrulBJdEC=8Jhzj><@e7Y@Ar=n zu-2MYhRF4BBq(gD?=jpuZQ|B8`4Pa`jDm>3hF2n!NP5yBjAbHVT+} zjo?N?`tC~L)gmTse(NZBmdYqLE;T*I?aqED$7P*$RV}5Nl@;iVpz)nn3mbFodXGgg zFxc-SVc4^xm(|yHm15JnJ$4Vjd4Sp{v(rzb-2xZ_ohI`^+dGkb9lW+bFO#iTgW}0n zgvB#kUHY>uX_ucKA5Be7A(2mTv{w#^OljxBATpDJ1PGYuAvVIJqknGBM`!cVq#Qfc zpj>-V<6wdDm*epYzk&|z2^_b@#nHo;@pS9XGGSGKd4G&p%*JH-Z~KoIHaq`9T9C~a zK}`!5@R)SZOb9X#+k6=?cjNc-#N`aDXUL%hiOlt^ycU-4>zR86i=8Y|U8XDl>Gd=L zLcoZlN#*2*%=7n%*034MCOWiA6;N2_Z>-MgfLL5;Kp10>56|WK_^TqIl-y=+^Y=sU zMV5ynmX{=_MwB%R1Cs#FqJFU;uXpwhC?R#t)<)U#l3{z6R!7C+64Ywiib(`&a6vs5 z=fzrS{S0r7@S-dLK_OR&5{7(+dI9ermPJUkUdf{?rz!ts^9uCG}9^ZQVKTN1n^1BV<;a(2-5Cv2UXT(YgRaXsca78Z( z^?|h^enAX?f?HANfg+NA@BWRP-~lUh>s^;gtVW) z#qTb)wzjsjy4(4Brxs1eYjxsvNXZcM8q9|EX*mw3lxUpW`?s)g&@7_%aszX@ z3eRJ1NP4=auJ6aiZ?Nc&$5&0hFe;S@5V!C@QiX4x-^fKgdWtN}@mA7pVs(Rr(@tG&Fwv-9Ndr|q|E!6#Se zhv>*?0cN9!_pP^(9SLz{@1MLQ&ykVPIXq=~uK_+g^!fYy*UmY{eBXp2n(FGKD2l`- zXDaeOT_^8YQAfHJ+#edAS<;Ef9)+xe+TIDXWM?OiDKjfAk4v5&hEQS#b1R?|0^T>w z@R_fL93Ly@RH1Cd!o1GG7Y7h13Y)Kk<6_CX(sQ%crzC6ZoNa9$>FMjB!J_hp5iZXK zK97hP7>l$^EpsD9=Yx?G%7E| z(WGvv2yAKydZ2BS;YPB<%RxBJc*{jOeG8GpFTvpyChb@gU*hdqT!4$l-yt@o{qZp; zyHJy4X$O7`;veiu@^5VB^QRdCli%X&2JtcF+*~h(Jz_cS<94sDMNG(_IR6I_)>t3f!MX>+MG3f2FGCv$u3gq%Mq;+a6~{ammO=LOA<%v`EjJ%*{*H(=g6E zs^W%(m&4XCOx`S%p+M6NS%~rN7s$s7YZB|h*+P1zGR(gVWY-P*H_GacpVs6f<8K4Q z*})vx+zz)JgKMV=%=`O>x?gLycpOd#3#FJX)&q}B{cWUusDRV6IY*)LO`uby)T9Cg zLKOoPbW9`=?Lb*M>4l_&j8buA@@FnMmg~m`$VI1MLw*E^rLKIml}hHRh~K}OJbz_1 zWO}Ph99W_-BP*#k+ht@=D>JLh^JD)xd1H2$wL#}{KInvcwAmKXkum&-Nds|$WTB$K zkqJ6-{H9eqAJ}-J3bMW6MzVMw__j3*Lle&0JZM3z+=vYs7ueKeDW#`-OV1~H1j%)l zaI7V|)#)xms26uBS48k|tY!HCHM6$M2M^V%im}ltgVXSE1*_%=tfdoCS$^i7CIS20 z2GeG_R9OzsSh92r=woT~X_^x1{XYo_d&yC3K~eboOv7cPg&ZxoM~4E9)YD$6_xHPH z4r`mDksUb#7U74h#rI3F9CSns+?o7;e)DH$!`^`&CvI&7L*51T{W6jPP5lMSDd8yS zn|Dria+%e$4sM5^5mg4M`;+Y(mH)G05#aAP0|o~74elr>rUW4qlag9GSygoV;xjVt zU+)^0$1C&6iFrsgHcCy6{eIi! zrH*U3rJ0$Nof#P|E!aWnrp=^(nNfk^gu;rV6*B~wn zHdzq1V83>M@!|p}SFR+l?)`WcsWIh@l5%W5weyENX{YPu2F*HR)=}uxfjAN zQ~3qtN7JH3X{Xxq;-adC#vkdKjP${W@{=99SVVi{!rXkce_lECaPWT~l9~q>Dfz4z ziTPz|Pfn2>>QDYZs@^fW(Z6d0o!a))n%ZusnA)~EwQbwBZQHgrwe2>wPX6z6&WDpv zSu3ka?yUaqeeDZ-w}}Cbq!Bw+8jYwKL}7v*gZZtl;kc^{$Lx1CS95H3TE?yO+kD(i z;k3-8z}zwMeCHfW?zx6%|ejT#L2M&GikAAHs9y$r85wPOM|L`nUp2 zaf|-ds`(Xo)FF+HW;;LVspl?m_msMOV4`C{0_QDf!jnzrkkiEZ^zvG23>*eB6H|q_ zJJPC$sKLmCMyS6(3)FQd&`rHR1rnM#wozao^wr0YJT4s)XXv#Rp`WoKquI6X5LM_d{e~`*);H=jx37XfdEB|mxMoFs1 z9Zpseluhw@0k@Q`$ebq<>F?{NZFsu=^8$;^U704fH8bH-9pN*S?n6fhz1r@*fG8(kh@mr&jVNIL%g`ztP)@)1r; zVDExgv_T_vk&B)E_!$Zo4lYkp8V~h&Ga|aq7+4h((Gul11c=Q3vg80f{Bw(oK@~$n zLMSM@GRMbZ7M4+N>P!}jT04S417@G;} zJI$5pGlIj1+mq(TzIsIgCv76|;2GONgMTNrQr3}U$Dp@Hp6TZeNQ$S@f#wV7r42(x z+(I!j`t2#e3ewX-pbSzhUqFlmDnr!kdyDoJo7-wiVk9es?xB<%+jIZRRfSUq)2MQ? zf-f!k!8ZQ}B}}9q@B>`j^Th9CjKFv(TE7WC1QJqNAz?uNImrz+ra9QkHCpSBr~OqXX#sjstYc4vrRx-iM%R-JSf+63A=aA5vpD26~bW64kqM)0IrMIEM} z{UgUBTXhrLSbxjz%}4EOGNnq4_*+|mW1{J=X^y>x?RiutQ>+3Fhd{?+;K9#MrtK75 z%3=5%DXgs0xP7;xZ{RDy*A5|5-B95nN$U%1U{QZ(i~jxy&~c<&6GGYX`o*??gV=6o z)87sa1tkXhXJ1F&vz?E8xY$y7d1)#NzH-^&((N%2>5?fp!sV=Bdz*g8odN+|!nW4w z{VK|ulDNA?RlQqttyhnd8uk968Sdn4D5%Y%IWAoyG_*K6lko_SZ?s{p{k9qosFj+M z)rW3eRn*!xY*=@9gZ1m@6%`31lU^{02r!3@3cbCfU;?gX(}CMT@wkgzn@u-U=nqW>xpom!B2K~!;ZE?UH?ef&mSHZ&7Qda zvyT1!As}X2S|R*F!&H!C&ppRbqfLHztRIDOOFFxCa1$2T~;~ex9dOMLGDh5=UMbs;R zuUAD;MTHgkizcMCzoLH3@Om$sXz|=OA7%wvf}bXjPlQOR$yu}^H1JRR2Zs*gr1i83vL8dhDF}{n>qbC7(WSo*{VEh8UO`A!yzr${ z`*r(!O*uJJ`F=cEEn&EgK8Vz7Kshd(z0rk!fwP)d1$gn$UYO+Ox?zZjT%01dSc)+E z_!1`;_@A505ya5A^nSz12+-eDL`l%|DEUm@WWY(HjH6G*ec~x%RFOb#q zSS}4XZV=Fv)UaSEfoVCTOG!Jn(_pd~$(zjUC8KdaWC#poVHQKF|hNX9to}vV5MK z%azVlh}j66;7l@arow`<`@(@nZW12YNU`F>0IUO85;!Tr_LU@QN9b1^AJ3ByBd+@I z(3VGKm1{K`B~g#Mva;kU)pfi*CR2ctYI|){lbf6I5X;`YMun`Nnp*6#g+`;xa!>2d zMx6mZP(}ftPSK;Pr#Jg5?qfT@Q(7=W()DH%ec3nbl{{U!{9x4Mz!NLE zwlWr$&TAQRU#D;=={^FC(O#=EA}&6jEB^hGP^+$T=+tfynVFf;Zmx(x<>qGBRMg(w zT+q~1{LREvZl19r{+6AXSbavu&rk}~54*a+$!T8B^bli;{3&N#er?s7!_F5r{n}*8 z3_SQNAr%7RmYkAd(PL5~TwP%d(>l#s`3o=puu#eTFcIye3ITYil_H=&SpR$S|93%b zLIc)4m^rPw4nbmoSdQ~QV|1HH9%?|u^Z=^k|5+}`C@DocWJ_O1mm-U+Nfn&7YRhkdE6x>@icMjI}<-Q&4rZVHCJ%G(qvFEk+Il^6qU_xK!6WBr^3%XF*q zdVE0ojrKCx3#1u9-^lsz;;v$QeYQHy#VUejEQ7~hMG=9I|IA{BG7``T;3iG~o%DCVoWZd?r&Nf`to?%UcV)O4&;rSbIOBrWM(`!=rOTc9cz=I=*ltcWo>Xvx{Q2{+5)23` zPuazd3)}3Cp|s~aFh6mkTmBH`mNeH~8Fb5|GYuk>%>V*d%4E`8Hyi8qb?bfUV%2IG zimz35jN4S5=;7@p=>Yr}5FLnbYGm79R4Hwm<>%Uow7fVQGS0H3j2yt5-+BMg_3q(X zt2duyTBa5>X_r?D5uir#6g^bM zqAhu)Q6(8|Vaq zMqW{%cL9rji4Q1Xvu9S9maY;)FD3_+H(ZIXtB5D7TBs`aE22n3STnSmhH3ZFN+W~} z*^g38=NeSUKUKz8kEV>SKpkQEVwDVcMsy`sG;53bE0#`(Q%e_MhE-gSfR#*69iG+> zop=fblD^y%5UEhu4=qLL1D~7>9qcaX!mfa^z9#ezWlkh6HWK#geQ@#bvIuu;V^2Jm z9F=gG5kx&u9F)QEl3&nB2bLJ7Q&SfR&<4c}c~bL)@=R-T>gVOWU0hNYkIqj|8`i3T zP0#G~^!UVt*BwV~jb885>3kwk!w(<=JU+H>UE9wF(N5N0ds`kwOu%7T5>9nVpw#Zt?|WJCvgDig~?7-&QdU8D*kLKxNhvf{O0 z{R;o(isVMeLr=y0^ifKoyOnGa?{$A=b7P?)C1qe}Ejjk`@wqNu=Z>W9RN9QF2tgm- ztLxOM>39q2`q-Smt1ntcC!-~T*n%= z-?g4VB0*m%f;?;&Z%#F~msSCW2{C0s7P3{pn@qVkmVKf(F)a|poR1j)(_*w@7{RiB zV;Kvu_5CKNQb0@&7zpjXmDbGn$;WJUh7n*~sjZxt_*$6>y%-5uF*!^sDFSP3kFl53 zw+_@3PeRW#<(5ar&zyv+>ZLDDI~L{GQn#W#3U`S~gTW@YcdZQgHMG~yI-(~m1s*W- ztC47AQyCE45Co6mN&+G)M%=Didq2HxXghEmNORLyG?Z3al}9u=8$Cp)^)Zk#z*;h+0e zPv;}pVsb!^{!uM#|8bUCZ${HHwupzwWa|i+57Be%k7)LCo=8!aQpQ)tSgSs+*`^=I zh7K=_%!pCkTH$|z%?4zMxkRG8ZQvty{Zo8*I_hx0hAMp|M5KUA`xXArBABB&P^@|J zKz}x7b04Bw zIFj;r43d-gb@fU7@D~G?T+8>2UNS)~%twFj0Xo*#qwZ>FFEPGOQGR+%OeF3q%xk-W zh$3D-%00g&V%E>onTCIS?KT^v?I!&?0BQE&+H|A1pIx)Z{S zLidr*9Ug5HC^FgaUCTQzTF7+*$Q8QI~(ROX-oNOX?Ty~<6EgI#sq1lK(;h9@i zHI5Tg0s{kq-^Qe45c$}$qa;F-w>}C&5L!|KW3{#fEm2Se$CCnGP~J@Z&))!Tkw3TG z$if|b46(4;o3!5jl*5MjNwnz1JTxdqsc=+NGRs6zt7_Vo54S2q#|(n;jQGC^Oic_m z4$+eS_c4dNq-MnPylL+Smyc*lA7I26YQ1H-T%lW33tK$?!7n|4(4s;(w~(vn9x_}7 z?$f4&Nw$o9Z@V;+p1j(b*%6LgbsOZ{?cP0V zlL=?P1X2F_kKt;@aWjY-rjm)Q4rcqC#zDO}8|GC`UPz?P7qBAd5eL5sEqYDZjoA&i(|KYD+vC{*v;HQbotdw+1Et8$HG=O*&Y%D3THLa+ODvo~DJhK&Sv zbr{?!oAw_Ki%o$a?w^-)2+T9beMr#egK~j7)~%$KM;#*Y5MC5e9W&7YleKJ~2PrEA zYfUMd1Tr8kR6`s39tHksj;S?JMVR2UirC$ard2IyPYe(^z4=aVa;>QCHF~`qEsnMX zc5wgKMjM$sqGG}gS+qtlPsyWfqk!uZj~Qm8p8q=q2(!_!_ zTm^4`V$F&S@O`p0w!=o-dOGnX<82Cca#{QW>8{tHq>5M|)Sh;p+xv=%?RhiGGu+|x zEINYo)x7`qUiH0&j>DaFlw140W>8lUU5^q^#JPi^2q?5a55mDWY+dX9OkM9U+>fzl z1X3U3-bXSO6;2B@JH8zIz<&RKrwd|&Sv9{&8N{bkTR;*pL-0Arw6F}8>0mxdyC~WzOj=uzn)Y_N3e2hoef3@n>o0PTWFCBlEj!lm z47_tB$Ea*+db)_u90{DspfEa^!DQGs`n z#o&;9-J8h~l#%J=10X=$%e*n!wLPzs{2(F&xVbck2~oM*VPwr#7e^AgegD-9(^ z3GIqy$NV}EHRN0woIs*l*n-G?Y|xAp5?At|F%@r|2UL`W21%1Kj&yXkfX8Im6n2n0YCoThj%!*`@Mzuc%b-81yoC7C8Z*Yja4ZBix>*$nTG`x|GY&tFd@gm zWg#a-J7K437%NGI>4_jL6HWy;;FEaq15rkL%7_Y*WeLsH%Qywd3A>4@L;sB-avK?b zf&COev`wWYm4NgyiltTWD5+h(H*;%yatPe|dvSGfad~}xLuh4X6@p>DdEkDU z|DJ_7I$yXPQF3T(`V3qRfDpY|f51K?o?ubo=Vv74j(0!26L-6u&?s4jKIKKlsuSyz zcuwTL$BTc)&5lp{;lqnQ5adU;LMjbmoD1t3N9NHEV$33I9}tAjxV@q3D(7RK!G<>t zUz08q4Emh%CkPcZH$)jDIG_TfvZJPqdftioyRk~1rmVU|5FxxGxX>B7$Y3e~)aRzO zs8WnqmColJM_V-@s>DDhFyumXP{tO1#V(id)eAl1>D}PRuO#G6wDJlp-BaO0@ET$z zM{HOG2ox`fFu39ZBJjNl{W+?gs!)VVf{}sWpo5tQd`4FRazId`=+_n& zj_yOyp~e`O=V>STXz4_yv&p(7A5p?Uj-mEK98nL3@q2B_X(MAzjZteTY@)HC0G?9Z z!^1<@XXfsp)S$QnXcT1VdYQoD`!3(<`p`5H(Ex(sp&_y;bzR+<$t$n#&q2cXe@e^C zrim#-(a#ggZ&u-%zbP ztLOMTY3ZqFcCb}-5VQbvYC6zSR2;Gq5bw}w|o6BGAfP_f50H1sj;9s(jUbL?45`?h&m2aVH$Ln<)FFiW*n;I%fxU92){$f(=s zP6*CSme7I0k+AINRl?4*?UBZA@ZY~AnZ0~Q^R%9ztCsvd{HL>8g+xDQ`q-O1X!^ve zyE%W7mP;l|$$relN6!%gXleo)YJvobiJUvH*Z(-JukzQKFTNd6$XajKxtN&=t0V&l zu?*gKi7q})L^Nb9V(o(d$B&@u^K*|nP)7*LJ{4FN)za!D&;^Ja6xt;1D`Dty&YcfT zc0aIBxQQM{+U3fJ;m0>`6w%?14S`2S=B7x#K_=yXBse{vpU`Xae^Xh-|6S(8?rk;3 zVl)|~1&FVAeL-4I*2CuonTZeDP~3!r|IyHZ`RI%6>e7D5?(%xtuiI+eR!Srba39F}uf8M3 zWR6B>D zcwQO}GRbe&K~63b5G-89+Zl8qI>B;fPn8ITNkYRyUSJ%yy zRPfvWCe$}ff+*QRQ0e#zKl}`6xMpJgqE@vT=0`HyKK}eDSk>GF-K~ zju^0U(Xt$ac(|5jsidLE{nLi8M;5)@j`mF*4K&bC!D^&87xARO-<}uTx!T(Ba!Fp! ze{ve$i#XWhx6=Y#6dn(Lm+yZ}th!=c@z7d8t8A3d^_3op#@BW`X=u*t`E@`;?&dcj zvbtGLttwL_X|{kfp6r6qON2+2&Sov_iXE%qyX&I9`|2?^wFZ^(SNCT)CvpJMRx3|} zXDk|OjQgHvbLrRl5RWkW_v8Nf!R$xO?SUS+58!vCXxHE3&(NK{&%t{1{%UqS7!VY= zfaSmO#>Vv-_CqRypcUMcN9gTa3pyL7ow$wbZrzlIp6T*}2l)ad9E6h&!tR6pObjp1 z%V_Y@A%dj+KNhheL6=xS7IUOM+)wOi6@USLv4An-!6d=b;`^-nF(#?3i!4%h@{vVX z5hQe#jzZb*Uv^NyzAJZ#<%SXj4%Ktm0fljc{C)a4{eNV0Mp!J-?B4!Xf4y`+(ho;k zLOb?pAQA*V>@WJA$;J_~c2)L5;DIe%al~6l$ztj3^;+Zmzj`#w)v8}XS^U0dUr^WX zuHXH1nJaQ`-rnAya=*XAXeV!aea!|gw(Q?iT%QU5bzjUxXn;~Xh&EV}*CRFxQLqv_ z=XBJJ{`SHdnFA3f4MTpwuBHs*p0|}q{zrxF-C)&{Y0Q z$<4F^-J*$Iv1W|hSQNiZ;b|J41UC0N`bs(6nTpman&}M=7n-=EbO z9d;xPTIiA$CtIAER1kDxmh_3=k_K7kS>Br@W ziimt51yp|*O3-z4<$YuF_pjAj$K8?Iwi{sY9f^QTS2-;=H+5r`KknQ`szF;l?)we* z=DOWgO-addff?1Nd5=4R(L(IqSrS!B#9@%5aqTwxFVUmK`XbS zqvG2vN7;(8!s#J!=hX{;vK1nV&W3UDhShItjFh4`h6TrnDBCKrujVB<$`a4ZOHHZ5 zwr}=~FFQ9-A6Lr*#rNI0V9}~X{U^+!_R0b!x;KHl^qp`{L*JXG?^T0^QK*^HR zl?oWBv$n>Mj-Gyuo|a8rJaYi11o^)Hk=kBu^m?x1XJ_+nOXzuMR?J=?l}p+Qw}1C| z@^iYq>_OceL6Po0DQ7!KQQOzx-O6$&GYG5f{zQxx<8m z%}ygi(@B}^PG<0L!Gs$BPFI{h_rAQ!_1`4ZRFrIM)Hf`6-Mu!*(Vw>ecU#5`QtmES z(d{NNpy9;6b&>T@Eit*P-xmi~Jg=Y25BS&a*X}Zl@a)VO-8+jdG!gR|A!9rSdaGb|tScd$6b!6zWH+7;2J zUlN7eS<&uuhfT@$qNpnp+wy|(>4}gjQW~;{DG};n#;|M_vZk4z$GJ(Fv0R1`E#vmR zC5JqUm}MOOzq(ZmK8=G-QVeV~xtMFf3qikN0w`gzErXcaJ7FhHB-Rs>XHOIZ?#C^^ z!%w=bVmMOy+Z=G&+(m&bAKeX%J^_`37A^f6Gw;?F=AlDDWpnpZ7asxdfMIv&mO0nE z1a}y=RO9-pS)-{j<8G!iLvXMOuTh#Obp9MnVYaT^)tH|cQ-jcjfQYy}$22QtUU`07 z7R}yn7*bmdIE3?7DHUAm9ehNM#xVI@Xxctnpw5jeTP)Q?+D{MKPGRo{ohv~)^Q)xm zUM*U>9Abifw;4GeH))Su-6`fBU7?dIdxd~y}T$0^kUoCIE1z1&>{6%{+}&*8DP|Kgqxv1Z_(d6gSTh7H-C5!dN{ z6OICzrSSr=7EREc-Wp0;&S_R!TNhS7mHHKBCR`5)?nyP9M;F9G!jMoBXV~PGsnbepk*BA7o`3W`%qwTrg?=bl2{VMp2RDK$C3|d1G zSwtt>u_sbb>CT^$Q6$F_KvM}70{U|`Oja?ParB-VEm2C5VolH8LHmOI;^sBxE zM!%b>jeS}QjAG67cquwilay#rQtSW*HOBARZr5w6trLyt&@M}d&QgS7Hmv`l9*Lns z13ex2U95koZ8;XsN&Yw)pcJ=V@xM?!b_?BiyOJn4C;+sVA+r-=RjY!%DR9n|eO{Rx zG|d_HUr*7@6mTR8P2Eg9QozPn_eeuZN=V29XFHBcKN-cIi&rLZT-eK#HuaQW?=Wze zTc0dV8Auf3T5S`bEb_e;TMf8QNy%_6;b ziz9q44$gl1?EU;!>yZEwFxm5igy_}X_IsQK3|qsfuyuC*NbwXr0tx{b8OsUPSwtaQQpPffq`7m zYt^cYvA>Zot@Kw^A*PU6>75iXgde`Kvh&}E^pj6^8O(fUh|vcDq3ifvqy ziD0=myY*TOT7XGgH9Kaau(_A6s8U2JzPKlgCK*-+s~A9hY#uZnXb{5ZPjAA9%7-3N z8vCh$WJ$&P8$F^-w170#=o)DT$h(TUEwivQ@8LlvgyFkbb*$1&`>mAJZZbpV)7k~g z#_h~D)SPmk;rbC0Gl-2%Gie8MnuHUt{~GD=Mnl3<)43x9vD$g5__`%9Zj4aDxIKBk zcHh^x^{l5UCLsqCowzSI1voZy4hOf|))T$?T5ox~J25U=Y^3Xm7gk|Qc`Jal+yQuc zf3qyX#qQtObX-(kw0@7LY%POry}F#}ycYL~D$=cpNvhr^zW#?}7$KRD62@6!>-Gi< z1XCr93n(U48HNU*N7C_nNW!G>VDM%p>^?SjEZI(mnk$FsZ~-$leJ8!Lfy6{f*WVv8 zDF*`mexN*VGOMpBA;YD&R%O9l!sQhis)8(-p@L0yh5~&la{Q&$+@v)c{#!OQ1v~2= z&#dEk1iG@c_Y0>2?=R3*bUM07mo8sUlh>{t8LmgE0~27=N#IP=BtJia(M%kP1%KHJ z*fH}`vcaco!WlyA3~b)bjXP7Vo0)P9gaNfJtE9$9)q{P3^>Rctl{H-h6Uo$UIYCC4@FbonPC%P1#W%=@Z`F&ay!!}2UNo4;rZAR7 zemWlzQSPR_yd8L_5>y9=ybV)MGDOHvaq0P)Rm0OiwMa4^@yMg%|AMB(hf6P%ZcdY; zLIb>x8NLLK>c3{CMteQ?y{Vyj9wZTezXsb{cc0XBp}K`#r|T`@n7^z3eUxaiCM)iI zkYcWK;R{Y7slL3qv9-QxdziT*m@Oic@ae5BZZ;ZyvIfSxG#fpRidK2pxm(N^A={eT zi;D;%&EWl_dh8LPBtVe*HJrbE4*e6S;fKdvMa$K_Dg&9ywhfwVx0|Xt^Q+~fx7WJ*F?&Vf-FiHMRV_MKS!;WXCXXV@W z^RWy8{4oM#nwBYakDXrVdByqpIc%w14!4q;Rw4sBbNc1r&bt9Cp3htQ$v}LaPF-dO zuF?D{koeoZbF4l=Q1bnZ9(3Kd*U~4|ke{I8W?)_&&QQS<5PvZ(vQ9!lg~T6VWuw>E zS|-=Plv&EiCy(dE8i3fXd7~4fNbv5Q^8HHix}fZSQ02gJ?R}dbApC?7-TBzy7~FYl zz>MxgBIBcCoHL^KYcX|Cr@~NAi7FFH1&sctXQZB>Hu3xNW1_O?VL>kU6FQw#adg!Q zeSyi{70OR$qr~_rm4FmFDsto{g}+Ky8wRa|f-P-7xFN5?LGv=IA*FE^_2IY(R~5EU zUMozIr$K|een~KeWV{$$?+V1aCi=~Z)WL%3(F(uOsLN-t zKd?ca$D*lbcv+;z|`{-QAH_x{8FU_u;yl1X~`3&d$=G<<+CP@Q87zp#PneZ zLb%R{c|OWtwC~D{D^L`NSf~s;|It#lMwX!{+(_>^N2D!Mn45#T+s9bJI4(&oAOEZUJ2mIIjy94~%m&*gB3TBq2jB)yaCAOyFp>og<^-<8 zWUWcd?hTkp7cEF8nHN_;Mq%cn^4Q3Kj^fEWPM)gyxOLGPsbQhWkwn7ozCS`Qcn$43v)1+g?A?-zl1M+*I4GzM-984BG;mk?m z0s18EE{`wlE~UNifIF89YOqwciA#wZ}zh{B%#nAy%b=glYrK3pCBy zUxh4rB4XHm0}l35`RA6xo*waifTb*mZV|rcX31E>urT3D4ZA7_nY87(te7I=e3ORu zMEjo`=yBl*v|^bpdvmu%)7$iV_;#NK+Gvrn=5v$Jw`P^`AOma~HF~IKo8^fkFfbvh z6k5$LxA}%*sSrh~RcEw2PP6^#XaxF`=x7Af+2$Jc9y^8@Fn&~P<(K@^%LPtTnP?@n zqEuIhbpQ?9&Kq;_P!feK(3_@{FG^Ax1Diza|s1*2RwJub`+idcjECQ-re|2mJ{0*82iYUG2rY%f<5++taJg zVkDwIPmAXFE0(b>;YOE#5be9=PD}5{jaz^Bb^LAWSCOEGqyjO{Plwo?CEGRcWKS6O zl<8MZe?_K=#7bGW8#3?Gm4Y=KmPMrXlDHv5ar0ZuFAE_QWe`%71AosDB(#jD^ps4| z7B(>fj_O`nwC`D?+wS@~s`1{5A&Bbw0bQaCFG1J16l%X8pwWk#Qqm@sb6>m7rQds3 zfeCXPShZf)gZ!4h&k85+v4NZzS2{*)sDfiM%`%G%;w?7D7pu3cNR3)g1ydJi7^bs< z79@iC6S9-e%}yNv`YUuuxZvUXAq-1)#f2lOCIh|5`q-%Wiv^a&xH_AV-?j|$GDWF% zCjW3#q`1b5qYgMjZc3S5Gr=u2@Sy`>?bi-j9jBd9oCANBk%E9T>go6Y6faJh+{>}v zD2PjJb2QSWMMaD^1OFyb%S;e2SzuP1Y7SNyg4`a)#)!$sH3!T%e#!c_)>iHw!G-dR z-BJxTB`jP@E>2QA9~yexzCJmMd2nx^o*{3S{yFRTaa=tj95!Wa%#M{u0{k^_$D6@s zhUd}N={)&5JPIWwQaW8_8SD=+@cWvmvSg_(>3zx%21rk0oR1pw$UinivZLew6}Yjj zjxDG!D@#sGhn%=Ce?8O-`MxX|Wf**U-_PC2`CNx1eJvp|WObCc*h|f~9F`G%`Q3r0 z6$Xwfv(n0D`7eTQbmiaUajni}Pad{+(x!9~W6}Ewkhc5#F}1i-e0=vOr zQ;n+ZZax(pM7pe+a#OIA4vWwdV`52hIiMU9I8#4&Lp>zQ(sXN2KSe7uRm_=1zv~Az zys#m6lKsntp~o&j|3=vVUZ|vRccLRw*H3weym(qp zb(Grm7+u5$hpFOr`kx{Kc>h{*CwK|S>ra;{p>izZ?JvbN<#x*jqxGnH9)$~kEc>hJ zXL!F}7GlZD0Iq-w2-=tzz>x)p1w7()$j?Wt1dI~i#E*6meDOXzRnjSprE%LEy3i4E zPM{T%QdblE;F-EVLXvWM8D?~_MOVG}sbJUmk>#HR1Brw(QW%B8D_c~g^OITG>Z0lL zQ07vWf9B69&34N1)~+FLI48b_Lzz~b<*6)EO5*V+cITsc3o=C4*(j$s68cyrEvt-o z*8Ig1cuemD;0ye~kQcL3bJ#QOILOL1$GFPg&o**8azKqvA^;y~`?-cw#@x?zGa?vr7V+f5r>*w&~4#^S};%xb)KuYf%hE}Q| zJw#%xz%pM0b#vdhM+>ap=O9v*r`g4?2ZZxCT`EnwOV5`A>8~Fk@0Ca>i^y2?GwQ&p z&F=gAXWviv2UOP|z|*7mzALx~*yf-}?@i=@-=k5ud)FJW(P1NX^gk zT(vdt^M2Xsd%wPDPW*NB4|k{I8?BX%;d^SOyW7RU_5k&#u?KYCy+B1mJP@M3@6%Xq zh_)DH17}_NykYsn!TR2D#QT0E_*@XcyQ2-jb=^!9cQOa|@!)H8wW08KH*`WhBmkm) z@%T44+J9+82B&v*y`+>+Q!@DBVJF2%U0Bjk4#Toz8Y2(D{r##AjP*U3PBl>4X?A+F zBz(8poBf(_|IkPawBPv}`+gZ{`zf7_5rON^#q!_LUSYOIe9L=uZfYqh0!_|UAcKyN zOx=weRi*7FX|z*gfADzcnr@mYg|xc1DEX6MKkXt;0y%A4RpUE5k-~bybCGH4JF#7i zLY&Gh6uPd(#^S}5I@5mrIk|FesrmMH^wfz}3kyx-#}#kDy%81>)?>+I)n|4N^(#TJ z5V(p8%R1Fq4M`~!1dLyJ6lL}(v5!i7H9l=J=AbBT>87~mArDX+rn=Q)e6;S??0E|9 z`%s35XUNmCa9lDT=q~C_zusxgt)mb<xAu8+A8!hd-d-9yglA{Op5V)r3W@L^cnH8dKv4HoRfkail+M9u{vta&j z%ac&KfV#Px4mto-Z?qg^M1aG@Fj#p7F1HcN)*LLC^|y6=rtAG`%&F@on8O#~obE=a z>3n)ywio{9Qn5`hdz28&PE(zu>lo_Fs|2-P3Rrkx7%n%ic*+7w;>HJhA|b(&k;TtL zvRc|_45ySakb-^@cwJiZe)4AMyfECn_UT=_+g@{gcdjf_u%yose#N{d^83Tb$tH>$ zZz_TN8-*MoSDHEeh^e{72NpUZON*gkI4dY|jP_Ckduz(g%-QR^`=4=!CHZ&qcll!9 zpL0i2CFs2!H#s{qAq%|^?q_X9E!=M$zM?ea13P|7SP4OAGSrbyFOWoqNy7-0d&$;t! zwh5NAzllDSINnLLq_Lq@PHLpsz|7EV$LIHLQt{8hE+fVPX-v@=5H{*XiFGPte6470 z3l?0SUGT*2H=986s5_4BC0DD5`{~r^KW^&DiioZrK!7aZ1zpVzkH)+CvbsKB7o_a_#& zri>t8x6OO4_15zmLMNh&Ue&@hPi6|-DmgLS>wE)Q@dRB;TP>cU>!u(T1pNiWA=Kr^ zz8Q&u2ALYN=}bh7&0J!UgK<28rCSsiO3t5XDvoT~!0_KL58*f|RM{zOcnbXB!X-;< z0&joj8eY&;ZX3nF379oQ-#Qioi7q-GxadgdKrlnHCE?^NB)z4FnB91!4lkL}VOz_Y z*kOp>owUpyk`Gka=}tx;FEkg87b8oi@!)(>b-gHDUa2OztX5ywE zTbyPAPrPw)Wyb>}Z~H^m|ZpHzwiu#+NjRw49eA$gqrV(ooLM3%7fhU@x#(7NWIbI)IgwJx)n z>%xs#EBHGCO?S+&-Y&DGEHP?8XDNIU{LzOzM?ZU%*4OkmQG2H@0UtYOK)T!v2UEAP z!o-GJN5lz@@?xTUkbBb?ziRly=}aDlJ8ai92%0+0+}X!^_;S1@A8+t=^Oxoni#UW4?DSO+JQ@g}vVI z$;}Bf?p*)qE{fdce3?$7P(}3#>g4(5b2~Ftrh~&6!zs9o#IINJ*UnQVl4{`}lKF`q z3TBi~rV*cPp)d3dw_(o$F+6rNbxVolS&Q+c%0eS@6P`HH=TEZLj{!cTbdAyoQCubk zmy$5$09%M>WQfG)1ldwJ2p-^cTfr)gKtx_^>np<7+jn2UkW%YbM{9NUpmVkxE$l)= zNlAp`R}a*+_tP5I^Gz@BoH!_D1|wW>g9odFkh8bQJ%QrBXEYU;|MgwW1)Ogjir_%6 zgXB2vq#k9U6S?7=Af`@tgsO^rPP-W*kz8EU(Op1YNc)EJ0c$niZJ zp1cz3b#vui36N^&H_#eShlf;FXsM=kS_&GxWEz17P@X742BG&g^JPu!|Kk3CnEK}E zN}^}$Bok{gv2EL!*fwr#+n7vj+qP}nww+9Dzx&?z-uixjpE`Yetv=nicGcdy*7ndC zWDxkRA+Va&BJW9%BM?|>o{^s6T-%j6kDi%d|GJ?ZhM~eEn?{NVIfa4K7i#0iKUVbo zaU~Rb*h+QS)q4_nnJj968E7|}gZ=j3`!`cSbh#eV&d>#QpN^C>5JZ^tr2F@Yibf9+ z-B<^nH6DbThNZ^4!!5`g_(=Goq)#pfX^U61_VoRKq+-wpuN?vMrB=<$s}X#O3rVCD z4GsTRPQ5HE))}EN)+}DP24RXR-cptAoqHBm2M5(Sd@Y#V8XJ+8tI&ahhGxzXuzeYo(-9jv6n z@z%f{(Nz%3H>}-Z83W9))8JuvUHRE&^+sKcm80S?$Bs?3J5Emr10~s(j03+{txHK5 zr)AcCKg5}HQmRr~vzVX$Ev;1IeNHN9>2wZ$;5_xZBAb(f>X3j&jDcy?S^_gox?0~a ziYa+-6?AJQ<)GV-_wDx*uj`-&-XVAQ&B@i^WJ%Y?DYnOrd5q%2!+epDQLGe?#)No@%h<>!c<*ZZ*HaRHgG$>-lopTG- zD2~cmdiLjwzvU+xGYZ0B%SgLD>kOp^$}!{zO}L}ti}kI*E}YSsh11clZu(QWR_>@V zOB68OJh4X3#!ghUPi;u(b?3p&GB`ZX&WdTe!##kTLxOPPf&@8^s|vdQU7~Gu0sW)E zvyzr4<{__-;RxIRSJY?_>g# zkEAPez7ox^b1#<7<7Qp{K6NE45my5OBTCUYZg*a6f${w>BFmb3Xbe8i> z>(dGS{Ah5rN0J7j+ucOd$QTKlv3d zXRl=1ybOM$Q4alXTD>QLomwVCk`-%J!q&SXAhrw?3-NWiVLxxWr6lf7IFMFrmHb7D z=73Gp7mSER;JH2~cCP2n*Kh+_&ibqo7jv*YVvD5~$^`k7M`)ei!n#)*-^TbOpLWJa$(Dk4`Hhey(3GjD zsGg=A$4%j+sGYoIN_LsytC7<$+h&LS{*^~)?7R7Bd3kcSd$>rAx+*)4#50Y&y7MO} zj4oV(y{K4Ja$=NPGDRdEIwxIp&j;^mg%74Hk(lPb8H9Seniwg#v#4aEH5~zqV)L3( zcUeUt%}*oBzOzD74q2VJUwTOegD!ay232lSItCJuDLy~6*y$(-1fLK_6&7n0nIYAE zdvwcm#X=|?AzI@}l8vPB!6W-({}>8xh4>6H9x71DjehQ z@l6-yBjsVluuJB1ysqL-=(AALUsluU{5qerSunKUJ9ty91>W%l(#n;m7z@>Pk$-NO;%56Yn%Ax zoVL^Q&|9@HrqI{aZBb)f@?1ecc`)P{08NTGn6YiR4xHo#Kh$JR8vXmI1;a=%+K|`h{(*t!6Ps&-_?LxKPY`?U zkC(rbanVY$+OYoA1+6B}rFp@l7Kz_qt8{)PW-BIb+OKzc}4k`CO2{5>AeK35rvW!FAg%na0wxFX^qw&PASm|B!|zQqIjO3}eA%$7r3&Z-cKc6T z)z(9b(v9j8O<~k;V62mege_sz%dZ{m*&vD1_00ReMfA5?n^nGxR0I^blQ)j`zgNBQ z!zNNJt0VxlQ~)zc)-yZ*+<79zE<$uJZ1ru#$P`MU1G2!#O)iT5q;x4v7my};Bl{wc z&*7TW=S>)&S{rTs;wRx9 zG&{Tm`?v9<)$FWQ!t;ec`cFzHuR9*EOaPAVmt%j1>$Z}!$)U~r8cW2IkQjtY4X4tY zfM4ZSq}sI`?_Mk3|AhDGa7@H0HX7hq3L=f=KMuCJ@8ZeND>g{nZ(!|(I zz0QO#!xiRDe+|3M-Zc^eATi3t@-GUzqa)2Q$PU6`KIV zF9!!C%@hf>Qir`OL3ExSgsYK3Bu5mNTCOa`8yl8uPAI00QBMT0v1ySOV!2!W$OpmG zr?Yw(sJ&1SGNmSvDErl^henDHp_at96!3X@BdNz(NHzyF<0PaBjB0mJl*tH^whN0b zH{XSKVB>1`DRzbhluZm)q$)4EOHzsm2C9)IY6VzjMU2pERdN_wCN^nv*GT@g z$RB6QVPA}ppvg{`i5O&hOYd<_rL`rFNcU3OVkq{i(@M@esYv+EQs412J2B`ld`Nwm zyB#J?Sh35N+^}T5T8#K>8tKL=^IoA?@g`YAUw~1Z{0I$IkRqT|yW&Ui^kAD>WCuIK zyIyzsPQCc?oih-6*;a9Wux~YMX7bu>y0zfqF7_Mv{zF|4{4I`!JO2l@CjYkv5Iwn( zBXjl4=f@E9kM!Y)2#Z@}hbBm@0#i=gE;Pwgv8KHUxv;bBL0tIQ(odJaIQm3p6CM!j z2F{4bLZ_JzLe$q%%oJTn*Zp7NvBk_@mf6O^f_D}QRO(J?z6?qU#)E6VtIQ(BLEJ8r zN$yr86uTs()}BqiFh!pVcx7QL3~FzWn%Vg#NL-W$oXx%7wz}DGg)Py0Ud@dh{98sO1LQbZPk$HH}hgAwvG8 zum$GI29x@We^J5|Y+!c=QV8)Jrd&u_0*{g9yCyJLz4nc%v-e8oHBExjzgBf&qmw73 zH+Agsvc4bL#!^4t27a4P=aIxK6|=ba6`Bg%kr-nB?Qln4aJk}^S-~4IDIRO!qC--e&hYA9cTsi4egoPdVLU(C3X_GmydR zyZxvyI+#_Jj*|EJ?fi&IgZ}f>+H5MnUG}}*>5OfRdtd?a#6hO=HV*3HQoHluN`d-u zdCn~(BZC2OE>W~_>ux=CcVvg_aev&^vF&+pE^DL8iCiW}KCm|%6k%gP#)iTGO2wbQTn=I*B{-T2FY>}3muS+>vEey@Ia88W}(DkPDAI5^6kfO*<}ICB_lAeP4YhBVm#AM@15#(b0*{3$Ke;A1klsvY}g$&$2o>zwyX*0Xr=Y;mr^n}J0CukR zj;waJ_o4Xvb*ByWyB4rU!3gE$8<#RV{8-rd*iR9biu=@%846T>MbJ!m#t%I z+^O@j((aZ8`?$Q5i&( z4x3fpGb{zT&t<>k8r=DQgJv@x@A&to9Z@~G5xI}~8JwKX8cLAD6Q^kIO;UWv#9v27 zg2$gex0fxK0S5g&xgGXb$M-?ztnJ>f^X|0AoQR=pa1Rn?O_cxyY&lBfDnJ7_dIY_O zDfH<&Yn`XN)JjHQ=!wvzC(wo#D=D%&m0AQsO?onKLsRc+VC|T(4^QDMh zc)(jhwQd$Ta7+MJgW0G`6i;n+K~62nl%sCvo*S|@UT&3#y=>$9(L;97prXx#r(?3_ z@IPibk!6Q4-!HAVLDu1;#3Y6Bx?AwTWNbEqbe^WRZOJx7{5!JN9;DojPK^}@L~P$1 z%lsEtbSVDfIYD?7qYgiqqdw~>h$E$mF*V`N$t=uxwZ$&Q0n4jyV#vP7jkvg|_6kk_ zqf4!3$EDI<)>y<1OB}n}w17tb2e$ofWM=6U-BrRTz4iuSBRGB46s7oE9r4)}Eq_B^#1yV%a7NFF!WhFTKvu&mwJ0 z%Lz0sY#^njI|;L30lM(3uQfT`kWyo}{#S`p*IJ$4MzUGxQMFY#6srDAJrSH<%X}W2 z7T3$Ihglet9XoJ=974xc8d4n$3qU4PaPZ+#vwf%MEPZ9@3MN?yD?Qj1!hhGdoZVAB^7mWjyZ^Xl|9wr#`__mV zn?zS@I%z|K8K0XEYLi_alC@QFXCK&1vBBMEP`{N9ZKjy#p4oGrYf~Mqvlc4$3`UIj zCYSunX!qTRxZd$&Q=LSl#O>*8#e#Cqhw49698o+f-0OOjOc+$dJSSKNqW}Cw@DmZm z>)RPF4+eAlu?_6B1-aYfUi3wVNQ_|7&l{u_-ch*te*JwvpGYs9hagJGp{|fGYaUv< zQaW1FYD~jl{7vrrIH-8tnuhTqOtVs5lfHLUo$~3y*>(SS^GpAE9OIyU4-k6xP)?3f?{v6Sk}-xCC(LwBB^ohCq>@3NZgz!(bi9%NQiqP4|{BoZSQS zU?F{&X#2M!-#xL|RBUugV6aRrmF1Y79eW_{KWofA7%;~Wu0dJAoRZL0B2tF1fXU&e zqsfQKod0)z6{5!?!BlhpXqzm5=%F(aWiUDR*36ZJfb1{r9USZjZ2JJ*%uJRGVplNz z#cAd5s^{$*Q6r~(tY65?q0%&xTSc`VXn~xWnPbw4zs+R68c!d^Ms)ya8J(SNNFiMmY zWnpPUCU)iSTaB3xf8v5AFRF3OYzw1>Aw4b>MaV%yJ+H3A=nA`S5mW;iYr|ip)-Vh- zSDZUi$m;mF(aLYe$S}iZR9#X-DeVPYHXRbCnec+pTIwTemC!&uf5Ca)?J}s^epA-07QnQ6iJgB7Mc;hCjn5n3p2^OJ?ez@!w5Eat z4eR!v#`qhkqKUTJuR5nlYx@s|;e`V`Eolp`aPJS`hIT;-AmP*USjgRJ0g+1bEZ^HKzC z#%N%}@Hy18A@iG~S_v^W_vllU(tm_6IonQu6s9`2n5Xy5bFN(Ra(BM@%z{VRlhYCW!uay8R=I^-e&W)H}w)8t+ zY3-f!yvnbIbbLF$znVD!s>anZBK%#BbhanmQxSjZ4L#b%iYVJ*$e%`{5 zV~vXU#Gc*kd4iMUCAE!z$Ny5!fqqq105e&|7+}@B0aMXd9RDQ~N~SW0wXeQUa_o#Y zi>3Vq;sw<~4;U{l>+K(hS?IJoE7v44on4f5@kY<~v6}p2CR)6^2J+ICs+btVs+cKX zr2EetP7(6WO=G2HiTzZWjdG&0oU99Dn{&LEB2 zHLt#wI^iC?-!8obf=*`2e09A2$z^w@5Qh|(d@t5n=i*rVAqod>hQFXjmrgk#=m&$* ze(Lk~3`3@wJ-(?-CeO%n^Q_6l%h^II#B)Ey$*4gYosN2X(1o~=EX%-aoAm>z5sxTH3b!7WJXseyX3b!;Mm$i?Sn1O0JIg2_l|U1QcjaSK4;tGU*l4 zv|4&KEtMVUh2m1jOq1`c0bJCb89sY}N%!DV}R=y>W&4Y)L$eiL)Wra}EwVd~Gqg zGn{$jhoS1HfwaaHel~0vzYj-&4tw45vN)0X_UG=~kitfjN<*RX&y< zl6L%lzUHBM=Y&>5d*jxDN(8Fvj_jR-!LM6hXGLnb)sEuM3U?~9Jilw$oObYfYYUrH z-IL~dBrrJoxC)t&W6Vh}xF-x%i8C@pH)`6O1gFG~@0nMQFvub3tILQQY>d;{#5kN! zmIADgV13S%;wAKb&UBKiwe7Z@?Do=1n6^|%}3D1Hxsbg)n+mG zB|34kVh!u@yhz0$+ti5H?jELA95;!5=s3+HZ`e-p8_%3VyTuS6Yy_)Gc3KpTHpU_i z(aiICkcl?}MvhqVp6{Jvu1>#06bGbl0oq^Ly-iH0ODE2W%{_?`(7wralaGttAD;VX z#^pj%RVJe~aCS8+1eFA5cGCnyA;ST1HrdIIF^3iIJ}~%~A((&NmjkvXS~ypkUZE_# zRe3kvUubX2xu>iXN55=WhhL3^NOZAP=(v?8QOvNH5jO?ZdUE&7(PqBV5Ip52|FkQz zy!m1ljiwRHf;5|HKw<4bkYp~e$$I%`&ajY*wF=?IWFlnNd_%ww;pWS>fWTTy_?)Au z&|Ogw0jFU;uiybSiXsb4$EkCgDjz<@D|GmLhdT09=vYs5fS*7icv26Ujm%8Eo<48SWO!IRKX6}nodTvHLWP?3Sn3{BEJ zKr214j-eus!|5#&RKDcEmL5Au?I{Ywt8J0~8;fZ-P?i_NO|XtzOS08LcKY{xl+#bJ zDn@|n$}LaUVT)7T9q5)6E*EERKh*0Y4E%1Y;i-sn(^%oNzAv9de+52oHc9j>T>C-!5hahff$MYKdAYNRwbq9EP$-%F>x(sT42 z%@}0}HE>!W&iOdhWt~#@ELul#3xyy1xuN3h(-$?CHa6K=kj+T~ZJ&rn4Q^_aA8lm_ z)~_V!_{A~L;6O2=Qf%n#3f@BT7l}_f8P$z5=YBTlRgR*w7*0kf7(&D7Py46# zM7i(X#g6v+?;kVO;p%55XPG5iiMZ@o?%f!X=p28jkifkD?M-Cyz2b%<(wofJKe5x6 zCo1)aZ(}TM%#kJg3eVBBcNqH#Xo=&h2McQnU%q6ZOmZj1L;YMooh59FHQB!3_OPPK zp7v;ANl_Hl`33VBSIZT}+Sh9|x*@s`$VEL*(!NTvg~9a9i&>XQoEq&IN$2a& z)#8W3`5h)h>c;A*Y8JNFvlicz*zaq%%O##p0z5IIy@DzCT$~VGNG>jQ=;b8IW^NSQFZqii0Xfa>T99^-?v88O&5q@t-t|7DmHN$GhVY`NO^=O ztVBnmjQlz&3sROiv>_DSbqe^N2gsrW`k)s1{W=D{SPegwXd}_~zb@^=ZRU0Ed9gqB ztYytu-~nofep)SUOqKEpgt6tIM(#_p5w}ryuyHZI@OWttZFzz{YA6L4fDx7C&NJ&h zc|C4F!JuCbeK^E*UZLcy%){t^Cn2yY1U}>4YDbXbE_oE%P+3N{ZuE{Y!jWNdojr4R z^jT-Nv}g)h<13_%n2+{*%RVQuVn)l5@~Oj)9(0_elAJqz=Ty)a^7qDSu>GxHj_`e- zQ0ITHTL6jV;}2+_BqrE(`0hD%b~*Dt4k*Be9zY#N&!iv$Y-8#h;!7)*bubHPKN>e zHmAc{HA-kS|NiAlvdP%!im14VqnBHd0X|HY-CTrzftB(ZHFMTWGPDU5m0S?+Si zPHxM*M@q{*#luRH`TFw?9z^f@yL)V{GbwMj8A1qj*VcLV(A#UlaK%C3Tl{-wcNfXzq1)>TI1&1) z;HU3R$IiRpMNov_O-E0c(cFB%B}NGH0L zsES4QQEd@M53U?I>8|#*0cXIjJ1f&>1a{s{);M2E0CR`!dNTpP*L(-%G|J_dy>*BZ zcDT=*%`5Xf&JW)o8^r3@-tSHx3T2sGiz1@9R4MnzTZ%`?A3@%xBU=W}k7!`=GYPQq=VvE?b02wgKAvFy=y))b zs}-bgB*y>H<$RL)kW+0^%j8o1zDFO%33i5hpToRBGln!smx)%()mIYoxR#i@JVom2 z;-u#Mv|qW9yMISJm-jpnPecnLr3`8#Y?G;#y(ca!g|qrOqT86ddxRhaT^#VHUI{gsoxOZImV;&@0`g(tlS{R=hINZf?_G6aqcSxA{|VexsB zp!!7oZvZ6O(t^b7Kntf%RqN)E8^4zMFAID!Mi=Vb^L|}aF9I%7)k)pZyU9QJHE1<2 zXgV9p$5EG&iYH3EJz zEZmGIQqKFqSuJEp`yCml6gcC(T&9a8Rb!6)pns`7RA@-xpRpwSr9$j7Jz-kTeTS~1 zyosQdt&|rUFBK}v@YE7X6+W!bKN&`bulPC}%F%Ks*R*FMB+vW)(vkm&Yko56kokCF zBCEtbF!=92T}+jvd`yXaLJ_}>R(Mk=^<8wBC zC_=4LquXgBIHcz_3ktvW`4t0^R(EqzM}5N~k1j4WJ&@M6^m}h$r{|)YM=po6&GU60 z2sQtxvoq&ku*FfDlg50VmNhp^Z(XM3?~RtRn8mB!?tEo^``%A^5oR5YbObYVVt(Yxom}Vg_H}{qtLPX=(lx-r^-x*C zBkH{27dvG|lp>Q$%ce68C*~okC3cNl}h7U!^jxPSb%eQ60xRzTdmvi4M6|p9D^VwpLy#Fej7uT5l-80H5Cukpu z43&k6GM`X?Fz!y7&A2cZns%(ylG|)g=$g=BOdK)Aiol4CwesgY2TAG-mkyD2u|kH^uC+) z40>5y`@p4$nx&5NCYMwFVXsMMMFSK}PsS#ILjwV317r2Y!D+>)zWMM9X(2xVi9>qH zBIV)xw>$gN#AS9YBW|-g>Ln>+=!kG~ln+Ac;(ZRe%HrWwO$g*h)ek=-vJK^U$;ouJ z`%?h&<0dUK;WW)UN zAp(sZ{D~KLoCl^(z*7Vy4M9t;VM61HrQ5pSmY^Up-Ye`Em@lRy&WPg7(Na-BHu+&L zLI*@Xup*l>j(>(kAdKxV7$4r)TMx;FrOa=#vP~#qhe`WGzJDq)cq?hCqtU+&qv{&XRJTV^7aDZQ&xaQcr3Jn9=8r@b%Xu*{JiU?idpl^4|U4xXUw!SG?ZnQ3T zBz;d2s4PaGe@tO;qx54?i*=M|^^K^;m|f(Sp-z`K6Rk{)1U1&E_sB}VdLLbtyWK-B z^KusDqtfA@Qp`6Z4VD`GJppV%@G718WR>O%DL*Oc>8;Evm}ws8ACtdKoh_L0KYYCt z_8;7XS3sowg8M1=>Va2Tx-L@%|XOq@ss zAnnu>M9j_hS?Y-4eW0@*r588J=nc)-B;&J_ml&!!2)v`hd|MVBAUI^^XR>PUKI$nM z47m+(4@nYI&SDKU-2}m9X^DBdN0tFbtmN*!@C((MqBJzN7?^6iCT&*?sJMN6R2IzG zw{l4h$%|7xsW_K4=TUtd1G_s|Q_-i9dY!%RZ>V32cUT$h7BU1j3efsjWKcv`WkAh$ z|EEG|b^ChA8v~9dAFh8kdP%Bd8*P5Q&wyh3VovX9YLwWCi zR~^^jL+Jc=IJlFBbIi{?Ste+SI&+hdvTvT2-=A>}Q zskWWVYu(k=x@MltX)pUZetqvBc3*D{A3p+-YFwICDdGneL0^p+GEB%U+E95E({wwj zQnRH6wh;`nr7E8S$Cfc2%I?D2_*TzD1+1J?3_UEl> zdTF3640aGvm0CPuz+%joApz5-L*Y(x)Mc<%H8o_sl;QhSMTdiYbH9QEIsKev<-@1!CT-DToSdcLp!4^s3|~rbTq4r9wMs{wn9-QDMS2QD zo`e^3_N?DN=p-KWTO{8G0)Q$MN=bRTdaBK^}uqR$DqSk z!XGU^L&nUjso;_+jKU1!Pi>V3l{HJq)|2r4QW({!FIX~%JPfHx3mU4D)?)`WXw3|E z(51yH4;W?NIxk?-_G49cbv5Pu4TQ)J8rZ22Gb735A6$sY_~|GrnSLgO+2tR)SI|of zV2jfEN*}-p+K}?4*q_L2#1pT)dPsiA#PkU=%}UrJErcGoXWoO6%l5xxTcjHlhj=n{ zeEQ@T04L7qH0i8!ZMfhP?arXjqo%eOt1z!rGQTV@$~uUpUcv^~SZI8$!IE^`B*n)S|68;trGt?6N@V+;R$ z(d#te$%=jmkqCu?nKCMB9@eE&M-tq(aUq}VKjy=bt8U4CpdbGZjM^!0>upIiG-7oY@IGgU| zx+)cQ`;_d8L(Qh~f}m)(DQ-M))HM}k81YMtXzOD+-yfZzAP%_{$%qSha6p9iL8nlXMR2<&H;q}CAuGhC%Gy-Hq29gQk=r$^(xwsXK`8t(GeQ*kNxUtRfAM;Mf$(ewUJxG^gi-;a5V0AC@j%myS2$3KZVaFfz3X zxHlz{;OoffK~-8h39|*gE?S?3F|S}K(8I?5?R^o9rJ#3A#Z>f4OX(UK@-IVU!E!uB z^_aR)Igj*oS4he$gm6B35&nC{sSd75J|5eL77sv0gb+#Y~CLfcqy#2pQNM zNhMEIOlD**F3*c(9>euFur00_{Y8LEqC;YeYk#xhCewAUNQ@|80+_u2(M2w{P(){u zft<3;hg1-eKy#M;mGijAsM(ykwEWlDKS!7WC;nE4^VkMtD$YC#ZJas|TwA>X;uL_8 zQB-mh7Yu2t1>3bsRb|&px@-xxl>f{57+PHA6*+Hc-wIh(wRmWed1-Gj<&2GOn+hn5 z7#9+(s2J%)%EWm@$k>k)A`L!8bNoeHXMnEqY5dzR0Be33#8Z`F56Rh|o&-~eq?WPE z!eEGCi7IS}NnDUtuInGe710#&(rPQ2^=)ZE zy%?6-Xt1V{C|D$bJ(;{b(BzDIncOy&s94-(fk%=;h^Sd4p{_KgD1#i?Dq#tMQBRaQ zDlfFzo2z}3+C;6QVgoe>yoadY?WS(;TDG& zWj0qnPZ%>V!yAG8Rb+`e6~pC$Nb;xFg|n(qXCeeKw*LhQ$&rRp^iw=WYim*8l8gsY zid~DjM!$r&+$$KXJY=h04k3#ac{WU)4V#M+c}Ob>o&_ZXAxfJ#Iij6JvD1{O#z4#l zwR^7pEd$e3Q;biXL{)~uYQ=-??DtR71GFL%r+5wo<#J#ls`7dg4y9zxI$4v@6zsY8 ze{uaaXt%c(JkOrboaAD4axz5QG9WxJsAKwl6LP@rOM5)>3zB_4z#5}{5?&-p=< z6h`gmGbMgx^_bLH>Jjz)_^4i;qQZSy<)yxIB*X6YL&4GSyLS_5Yn5gP%U^T2p z-(FrwH%*~VyR$=(8Uf_@Y)g;2p87k%Pd*uFP2IHk!rTkquS1sT1EACP?Ph*^-IzzY!bv)B` zlDe){mwjD9!F|(8%;3S?d3m`9&5|DX&A5Mxp3nPf$40ZQt940D&o}T#GBR*r(tHBI zDJyrpPkH#deCSNlc1vKIFTKxdz9=GrgT~+6PW09r%uYxPkIHC^E$CybJp4VIwTR%@ z3!9}cA6;DTE%gKEr>Cm}p!60HT%Z2Eo~Nf<@fR91uPv;YVM2y>j+fovy6dbU>@GE& zOz$|n)1mdz<#|2-lM%>TPWu%h*1@2s+iv{CaYtg;4e>4_J(2F+&B(}T-&XQ`I(KmG zx4Yft<)$t)!oA|@JFy&vMk*n6aEobvI%W-)BszAwl(bc=Af1Qo@>GK0fO8k5m zaR0ZC?hK(sfGq__uj{_oOCsQI{d|>WgTXL_QuovE#^>?zUP4Djm4an$vl_6$)6ouS zQHo5flmg=mkOHz#z5cCAB4ykw7Y3MfJ04!@y&mO!FS~U=cZvI+a+-(y5uOfyq|231 z{mV3+#iOUL$HCq1X(_A3<9y1P$wlxn3bp&$<8y>_jn7jDoXkcC0s;5991N%6SP?(w zQ52QQ?NZ$I2nIdKa-y}v<=N?{&zRBn!~u6JqT^_wnVfeaq;k$r78g2D5041H?Rzl= z^jb$dKUzD{#l^(bS*bU@z5)OMDP~=tS6352nK;CT?^%)hbhZtj@BU&CoDE@MdPW8f zQ`YwOm(Tl?aRXZCF{3Praa!&9b=!d&J$R{R(kVoAgTUJyi`7c?>-0bj>3$e&T4J%6 zPF>_r@7-<;J?~ej82&oLA?B?5^K_iQ$QChYaM%zUUUdw1 zraFG(va&Dg8L3gQVn>jpz%0~TmRC?4cLckHiV#mt$pTHsd(Y#>H;bD9mNTXekB?1e z)7cvxUS^!U6Tw$~d3iv*yXi4fRcvzT_`05sJ-`}+&j$(BBpP9=M+Iu~%iQ!LSvINF zms(xw+|o)ui+@8wuP2|`YkpS&)?5HP3iaRLOU{WDy0+jJcKdbT&)GfT$-LZX!D;?L zz**+I3m9qMX>zr@ z@CrDDd{^ExRpQ&;UTgJ5n=Ta<<%>Scv=gr)yol+8=}Q&ZHUE6E4o=mpHNFUTyfMX` z-yYV0*8JY*2?FduvGJ^}4Z7un9X-Y{Jg$F>6G&1}cDAkpw$^erYzPS`d$l+S0#(MC znkv~36`dAFzw)zv3CCA&?ktb5pp^Z(m+dYdVf20x0S)uH9yoRa$!I2S7(DQQ&I2IeU3J94Iqrd_|J2uw zlO1Y6o7}|Ab>x;`3oJ*e{iE-1Nm^`R%8WHq_X82}f1s$oFWB*BO{CM+2RO3v@z4K- zry$i_;6Z@@2CDyyR$=~c0Sp>QX8gYepw+?ug#bO?NdI3jaP>bzfJpcM@BNPu!vEO& zpCSLb_dh~_mmmCrB?I)5n*si#895Zeb3VL5_<+u2wbIXESj$R9={zSGLDC&QB zWLU#kuZE{-VKmF0KKw0~kt}EnT^=+gX0Hf9>rvAD2|mlg2)+*yID_D*5TAa~8W~q^ z+$jWDZD!$2WS2GSzO1BI@V`(~9dcpsjDx0ne}{r8x;F?DOlYv-NQ+DlX0nrncAj$P zw(zehd%9m*rPFfy%sRm!;g2~ zzI@&uQ`%nc@4hiI0>Qz#wuc zKMqHdElOl`Rsl8{Q?4k9GaR9)p-y9w5i@h}IE+(m<3}bO%p^8@+c~ohJiB`FMV&e7 zQ>s-<#0xtJp~`}@a+$TPtfMb8{t0i^G#QXPK0~amKn&N6D6OoF$4~`EtHz6-))E4$ zkjJP8lt{n5V^<$-X0izytScES@@ie8WEj!(@tjN3LnGM)>*e37%H^-W?bSF@ zVoS(+8=zh!i_WWmU_e=uaU73}FuILO%S z?3&3o>WxOIo*MM_1#Z7H1sLQUbae0jaYlC-X(w0OYA>DVQ^tYA!OnSIxAtCsZdcvU zTy>d)OVs^FwwO#w)%tg}mF09i`Cp`cQ*j%~YR zckE>HpEI-Ode-cVx~NsP>aALZ_u2LAy*YO#vopv*q1BhTDUl#O$Z-x$H4Ba)#Od=T z&N^&G(Egf)G(5+!gK2u1X4WFG`LEJJWbjaj(|3hH7;g$_6lK($fe^lkv*|+itE!R% zcB3qRuzP$6*GUuLqM0t6d{s}P;TZt|hrl8z?u;u|ooLjR-|HSmV{iWZo2sR8E zJRT+1LJ1Qw4)*kyzbl(%sSTwEe*u|C%n5wx8q!;oPHAc(NMSjm=PcqV_+IB(6DPLm zi-@xP#!?2)$`+khOtvEEmlq!Ep+Rk4C7<6_kE%7>u9Z1bUyxixn~s(cVT5!gSN`D6 z4L{~Daqb!*P7uUh1I59-5{-b)L5LP=9eCthb6^GsS?1f;nXC0Kr1!i&xnM z6ePq}=Z`PgWN<-}0~$OU-vqWPNfP7;Q<8vRESw&K^_cjRS;!#LazU`7x=Ma+T@9(- ze+#X$d-K<*1Dsv)_?gojTeBqtf7MGkR6M#T<~6y%O9H!mm0y5*gG}CfMm&!G4i(~c z9*&~%5UI%9knp20iB?ehTtecWCkV*Bd}KEyEN6W!N)4tmk!6tJu|?$sDAkkK`)Nmc z(KO0|nK^<}isiM=o@4Z)mY_!@9x(?{qC8N)fF}eWEk4<{3GmtFC;;OvuH+yC*cCPk0RkT!l+SPo$-Y%UJFo<3#aYxpzxQE+JD0Sp>| zk1anf{wF+`*q?Hofkg?i!U`b)2P@171P&r7>Qx8`fn)7SST+NaZ7e*epdd4t@{$5( z(2v2w)IU<#MMT>Hp@!qGF`I=H{qoVTzz}i9j)h>&R)ihEg;R&HWZ{fj`5jxA8WORw zU&bOW^d&q~s^YC68S5rcK3>p#$AUlOs3iW3-WCN#|4%V~29d=WDl@dmiQI}=(W|*_ zU9iyL213sTQNdhW1VCMo!k@cc&I*d6lf+wvs6^OVuGAN_jwweSg$4sj%4m2+qoEWG z%gSxu0zJ`71VVq!-Y1>RFUJ+QT%}MYd6;s5*BY!2*iWf6{d47YY~w8{_y~#2j)MT* zfMTC2o$@;$bt+#m_(*u~XM>eK(Y@X|R&85|#7G7CF2W!E9H5hOKp>GS~XbSjkc5sD=cDSR6FehYyQKM@wRUqVvt6>AD%7UR+Gi?VIrnF8fIz zdL7TQ5I#0xjOI4;E@XfHvD$mVz}|D2|7#iekMG`rg_A-?J#EUWVRA-}yXWh?ylkvI zXsJtcJ>E5@ad4~Znr%AGs79cbzPBU5if%&E?=IH-lKD#ib0tYTp5TQ4GmKemDaWJT z*rBPSgqfL}0_`V-rYz}Yncu(X^SB#9M3#e+ldYcLV>W0=l93{rXE^U9jJ&op(^EH` zW)^Z^%i6sZz$hjfF41xM89Af z2y@~@=|%0`A&xV!3*BVN|{NTt;H+<)xWr=Qy5DnT08AGAGUS-g)WG ziGjoK24RD!u;rKP(J_PPXY?0_md;UD8i{oWkO+GmaqoN`9^Bh_Un>lSJun>Ii36e~ z38B4wh_{W{Ai8T4K<2RPHi*I0WMfPS zC%)dZ%=w)*t|nPFj27%Td>>^-EVSQ7nqmuWsIC$rVUvB2GGqqzhuH4SdQoAuTnyHMEvGDKNmJCsR_Xb6fE@Uv!h{nV zgJ7b$)RGYPnetOmZ{Ap-JJJ_jMU`&*9d%}XGrb5v>EQvkeNj1nnuy)1emiP4GRw!= zynjMV;r})IWIZ+TH5g~=&BT@a=V>sjc&!?Y9+3yu>P~3o#HyCNrjO| zq0sECA5~V{(>!GRms_kWOUh}7bLnxm?8@W#GKt;!$4SKV8DWQxVL?6-_b&XOXgLg> z>^P7@cY{rf1F!-KQAxT7y>X!VBJB0 zpI6yeQcl0<-es9)wO&_J`#rssYIH;_9z1yz0|;3C>Q)AXizpaw<~Jy)Axe7d)nvv# z-nV|tu(OE=^%zJ@Pf5bQZk>{)u&XQ4H@5&Jr|+h8O;vHVXL`EtTH+V;DrD={(uyLE z^=N*LtI^HtW)enTS=$|+Hi37xD$b4B z`#gB>6a1}>_dTe=%p2eSJ+So8gSq`YPM95X6O~v<-2`-dt-$|lxn4W|%Ikcqqao(L z;ltgIc1A;RAPT6f=^E|cG;O`nTlL(|9@omc938PSl)olqyXmx`qMpT#L$&?;dUV?L zn?q3aTk!o+wICiYp7+`xe>#6AgOqvuy1KZT8C2Xcyj;BLdUYk%F^NP_j_dL)lhH2e z(}xe8dydonA&2&Y;uA|E_%(_)!BpVT)Ib5ULqN?6OW(r)we5*OzqiQcE3MU&nN-#wE=oC2S+>8>z6DZ_{nJ6YPz44rRw zbFJrNR+trcLXPL@UlM)ZIQ536@_6_25ho<|({{^O=hve@^AmngXC^*w?zZ!DYGy;% z^~XS7tP<`-5~=P7>UqnRbTpTo+hYWiZSl~(?9=DD{tkTzZyo>5D19XiPvYv>ir>>; zXM3E5C_cxhZGHat)r-}W$4+U&x0^4{Z4QTpOGJ~t$UF=e2a)kIxw`Vat9Z zUM*^AN9JX;J%HEj;~zSCZ=2nP8>V>~x6i?@=F<gA4SHSdnE0v81Fk3(Yr*IViJ9VjGxZtoFuN82oex@e(a$0)H+N z8No7?2J?5P@Gw>A=}vw>vqz662q>TDEio|-B4H-F&*#7tNiuLlZYGV!Yn>oQRUH!| zlq{YXv8}o{sghv^nOWG?%;G0e6Pkx=oGQh94@6QJF}9?Xt|l{;79}vIq8^_{GL1-o z_C@4lSn?|L9POVijw>l03IFg>gI((yf=$!X?unf!|(z}Q{QC1Uky51E54n=e=9hz*nZ(U)-)1^sEKg8>q z9AF5P&z9cH``&}@;`<$zv=R>}mTy$WDJFT@ZbClXx@PljJEDo!zxL^tG~I=|pIPF| zHrh;{`435ejn_rA%pq{XnB~|K_gJ%+iFB zoEDsJ?(rwh=*X*Mgc;^L`Ks;pHLl?Sz00}Hy6lNzA@e8b9mjmuJyJ$rX1{T*ORq8g~#h8{q@bL)wUD)pZ@Y+_;@w0 z`6#O6`7#w}>7ZsmB?)#gC~R$Z z=0JLo%eFh&y|;AVanraRwix?3xT`x(O9q1IF)*d&7~NcF2Lg3;n7mao}t>?ldPj1V&P)p+dp*Q z>S7)eD2Nj9O~m?p;bSw5uJDtIl)16A%fQGZxuwJ$Yi!KY-BWd`)D@DgYVHzIEFr5C zsHkm{V#a$jOZQqkwV1=2oD1pij(HdV)R4C!Z&{%rfE4K}dhf-I922O$tSkoe{?5uc z9;6-BXZ`Tk5pz>hN^WYri1A-au*~sqJjKP8bJxCV(rPaQW>7v6m({&fWFvWGPEK&m zB(9WTj~VR`1{x$bW&_EtawujXKM4_q!Q!de@I}L<&1PFl?xp8*;z)bpI2wLIt0~4& zv9J)6wyYR$S*zKWbnQ4|11u#|Na-#{c`=`Z#4bc!)vtcPf6sNbNen%F5G!CO<5Y|&5fN+R-w~V=j)!A z;Zw8mKGqzs^M@q(0Okxhugs%I!j7bZKcTE|K%d~5E>G&_;&RHAj7+ymgdij9maCrq z7E({PO7r|3ROHDq$uTzAj%1+70~{jmf^%y!X7BUKfPJnlqqgnYGJ!e+MP2?j)@_UD znx(k?w$CZuvk#Zh&ddHx&n=zxA)CFS)jk zZpMsDJbMk2bCjQur=hOuap?Qo^{?Xbvnd8m&3>z^xw_MsVJh_$moPK;A!{0 z+->MAX}%$#cas`rv_rz|X^=(N$pd`zB>1*So6HDvg7e05BB_$?1hJJKJ&DSvj(? z{d&1^{Ge8~WFycbn-s!G=KfZDt8CxB$a`8~;iQukK#AtdT~Z3Ss`QevKG zg`G}KSM$D_w?*h6W2Szoqo0_UX(K5)F*!ah-{K{gdrpeQ)oZh%|8>n64CV`2w`O!Mk(Fqr=RA8yfP zod5IqaoO~DPawCfXqFp~%f!)`hQ9aJO|9gPs2G{yao;m<-pA(7`w;k5JzqC% z20$X1*7y9itN-TT(L;N~dUJZ3{FJUC_EF!}*?2?OubiM5cTN&TKZ8j>lWX$9MOv}o zC7WzV4-HoK*r+7M;nbG;(c4L9d)|**O?5c(4W(8!OqnSUS*i-d_zhHIg^gydn41Cw zlcdm+p-$wQ#td081Xo&{F|)Fbl#H~p5HK*?@hQ1OEEHsMeCZjk%^(lcP_bJxvI^%J z`P>vKW&t}U2Is*#If-^QrMiU+5F~Bb(G}c5!t4YZDk4?+_d{BmkzeMeyS$z0;1z=z zf+Fd=6@pYt64?YITW~>`yA>FxH&C8zKYb0c;snw#?WQPj#L*iQ)3a5Fa}s_e5F2Wc zI{};DJtNp-zl^c*HL|>0zO~}QLHjO_r(}F*k5Dp{Mw#sv91Qy~riUiVlm}E+o8r>~ z58UgSqG}@&VDj}`#Apt$g_@k$a22Iv70k^I)rWS4U!d_5qO)Gn(7gJxAjxyE9%~jX z2~igAUdjs#5~9RQSGUwaZ`Vh5B$$%b>R)=PfJi+{Qu5Xndp4Z?5+X@1j9ab`A33{H z6!^|Azdi@H=>Fpe>SVe#tAE};Op>IzqKP1!I$?%Lj0w;{;$o^!W=>vMPN8B7!SDVg zyFP)6c7((LdP>SMNsMAD*KK^MPlw5J_7jb9yF5lM<@>YY_5*Y}q1+9}a}pjgpo!ov z{c6k7zRL*>l^8zcP&qrG;PuEe&=C9nDuF-0RZBt?21v9m=Qar{efOWqoy#hMV5Ou8N9g(Uh7C0L7#(^7e50UWK4P0YX@%tiFB=K0qhwo)uXg7{(WRZ( zmR_0-D9Of{>f~ET;{PZbjWuLC;{6l}iJ62;B?;1#ClWI;19;{jlrxu6U~kEVOPnz) zPfllGhqA88WK-jYuna)>=3*5m@(w16Nz%5OHT9m#ECjGq`}{5V)*<(qA^{frDZu-Y z{w7MpDIw$0`FnY->#&mHS`bwzXTjuSQw|q`8L~NnRnp@}1CSM&O%j@s>B@ew(yAtk zh;9jrkW0eUv!t4uxIlr06_{!kQm$V+)~BlQ%H~7SA;-++i#H#nyOtD}!78fsdYQ#3 ziWc$EOPxU3#>2B7$1D{*BN+R@4KA4GyS%Pe@zp+m4rC=V>iD6Gu?9iNH((t30m zFgw5)4Tau3)qEoD_12zY9K9oI>^L8F(^S&x3`e+FPtVKY)87L1Png5Kry(1IaZ>Qp zPhhTayM!Ht6N`%~ORRcPEyu4UfMex7C=6JZjvO-Lii-{tDpxG>UP|Of;bj=afx{D~ zy{r-RX8@XLuDaYXe@#8f{OV};LNzVqfcH85xxijy0tnR4N&dV-D7BWNk|FDT0A_kc zU%)5EP|8cd0N@XHc4ijYrLG^x{JnlzAEt<(nVR@DtJ6_&0|P(`OMK~o<2m7T49 zRTcJ&v!{8P+WM0hYfQAv6(t5@5K zW+qknxyxibxMBfN;~PnVK1zil6{Rh=R9&hkA#Eq|g&!j=LR&8YC)#0j)B!nTu6W&h6wg~$`0C! zYH{?AQ!8QcI`mi_$xjo~_|sEgKuQVxRp3%KHH9QmohO`V>2)}jx_{xy*|}E>RMGOP zWc%6ndToaNI=Y<+E4Slka4s4)$af)DSOUD4{q{*D%8h=$+^sGI%DMI{{v~j#t;t92 zK{Bd8`xnMv9hdj}20}wZrfm_PfQmI-K4Ztv;il}J^3r1LCxXT+1(X?polfCPSVTnk zQc(!(Q_*Kd3>IN zsY(NvFkl>=oX}#x_>7Ki#j}@dm+VE%U+~5QbwiFF-y8#hAohKN`^-DRTre(AS zR{B@`<7uCWvw@|_+)a7C1C%ky!`ZS3;6z@nOp%t!Kg7o89mm)gKPJ+t!n<4er`^oNM3$|@* zqyf72bOpu9DtA2A3$y|D>oomjc!~R6& zlDvNXT1OtP&3Lx7W}%dcEiqPYv%Zn2!91Wv}NF(oyDE32NYVcW>|X%79O0ahoHs* zrM*MwpnB1XD-`&X-vb)@&@rOrTc^H$)sjL#lA%-s4t@Ec0cA`ftYi>ko!_w-_@WAJ zf(c{d!9(Y)JP@EyRPA)HsLrWxU$t6_pUozXn^mju>;0xkc!g@HG9o#XIWYr0N z^EH$LruW=Ko0sZa-$PVAKUSw)6&%%C9|~4_qQU=$4(~q%ORWFm|E@I<3kv)%u%V&; zH_QP4-zcVIO>9eWENUvYH17AtlY04&$xve{EU?otVo()Ctn(2frR5_YmDFBObiTk2&`<0#gxR9EZu6izn1Ap zK?79Aeh!lUcd#p@5-6h$A`3KT0RPQQ`VyY%04TA^CjQUYx+ zt->iw`0s_$A3kK1^0|2x-tV5NkW<>p=$ITSNMtY|WLJHCq4U_{zu0fT?wDAta$}x36 zRTf=*9(LO7Fsz|7C+Hs)4oMhbhiQpD=vuf= zAlQJ$6|kr@69rRr)$8z0N>H5zEh-%Z1-LQkao=G4kQCTT2;B9GlC*YyppTak6C?=N zqvM4c{IHG1A3zA3GdC~Iim7Ht+OGGm>Tb0rm-(mn78AeIVJ&Z1x@1mhNdRp_C(G^K zk@16}*Jr;4KD4r|TQDpl!P%Ninf)&udK#Js`N&vtHh5>%h_^PbcTTuH?+JlTS`8%b zEgZ#6Q_W5TtERjzDXc&g{x`9D+PreHJ`{EVe+hmHX{x))8img$(kFpU?dggJ?lcKfe?dzL?evgo?5W%ylt zM<3eoa4(sQBIlRK>%jmIg zh_J;P3Ryk!E@w>oDTZbV9-xK zTEPM+v(b3H&yv;IF1K12z`(DUpKNL?YKnYCA_i9lsAq$kG88r--0TiK^VLfqx^UbWW!yIvaeI^arZ_&e=J`~*-U zF7mh^*W>jr->!PUgcn)g$MgR+*Kpev>u7>dlHJZ<>(8wAP?#2eXwYVy#e7)s%)qT7r^?JBCXGW%$SSKPpP>wQ>Y^ST)Omz=n%M21zY-uX| zJE13BGEeis!SM!kGRt_G6^^xBb#VELpow;NI_(gw*?&F8=X#th5Y}C1ye{_4hv#wn z?NIPfBp6H`ffBR2v35C^ZmleG>n75j!aN;Gk-9Pq924+5X1ACf43}Q&eI?@`Z0bzQ zhEnz8QqxHAD(~FXbK8;dQLeq~&foD$XPe)zQy>c%JcNtkQ6%^#U5gK}FByry1uqUhcn8 z=?LdJALmX%9;%*4F(p2=Cz6l>Br?r3a@M|`i_FP=8X{2)wN8TxdzV;w<+7M0&9CG0 zc=R-tWJYgwHoDk8r5C_`gQ2v|I#P@|c*UjM+)u84e2WlUwxFOC0b%iB1>0(x$+2xY zT1-WfBd1cZO5eWVDQlF|RhF5VpSr3yq_(T~LNz2KLXmN2jB!WPNz4qjwc)V?g z4%4&#_$@JNCi8|&h><&c_I5l3w$^H{9WE9wVrq!zd>(+v!$7(nXHyc2aIHY{(kYx+ zm0(>FrI;(%C<2yL&N7IIn4sTGyZd@6FRJo_sdh`rNyr}b$QyPk2&kfhB`xhZ-_5k9 zwHqk&##1oGwwAsc%le9b%SYcwI9ogdqLf08Zo zKsu`0uGEqtD`s=`9|Oxb{~_-AieIgE+cnu=1UD&Bigkuxm=0M|$g`lMo99|zY;<^g z`zek+PMurAoZOow1$H8nfHf5#+SFB0>gspblk6Nf$$J$4F==RVY@^(`m$QX6m+QH# z<&F_?_=CT954HGw@_fJoML?=at0d#>C6sD$Amu9a@Q9x@uweN@*06#bHOsuP|2ax- z*_Ad{{k(wxQnudNeacCW4~YtgxJ@ZkNNy}W)BV&_bRZ#oc!aM;m#nFUZ^`p9vtzSS zZynFbU@R+-?L0(XV^$9TRP^jfTLbs;-9WeHCY~~ZP9j0aw(l4g*{wb9|6FsuIuAR+ zoD>7hR#y4s|2!TMCjI`o))>NfmY(VKI~ACjqup>XztV0h$Z+z|Kt$!`M2lOtZ2O9hTN5%XD&*mg`~TZ3&#R0##Y(CFK0~tla!f zUHHBr)`^-Pj{1gg_lk+k7uz?`3zYgiHnQjVv<{`1@-3Eu`k?Yyry(tkcDUR`qA<78!Uy3Fj2_ zb;K3gcYf^?j=E`5?Blp7Sbhj7H|MPIKN=)!veE7NlP?_q689ACaI@= zjBXikrpbsQy!BuK0K?L?0*)R2!vX@ah=@x;e*#S{MN>sY1v?PJA-m`LW|MP`jq9;w z=L#w3;K2Jb2@q6G7?I%470f5g@4UN743vQ}U=5a%g6pWFinwt`RQaP2kO%1$ePt!< zXs*kb;0synRv{LngeeO^+5!P0>T&X-z<5!#AT}o%20TN>0~1O}ux>qyTb=>Oxd8gg z*-^muijBA?3Yr8qybTLpDv^OJjii8yI?c#Ufq+Koye+xr0sfVMlvEVSO~7*EiFi~; zSt}f9umrSHNsP*rM9@zQ3`ct4;eiGNjglpsG7C--77nKx>(YItFIWJ|47ggI`RI2I zSsof!(u4sZb#2eFTQ+INO1I!Rh>x(WkestfUN}Wp6!1y|EE-tSGUf=3ASIN)gmmcz znkd%{BT}C#9Rei4xl*B_gyGB?P8BUl6V3+ZCjMP;j!!{D8j#p2oQ;CK z;#y5$EGk5NA}XRj@C$rgfhcTX#ne%?^>b~U+0;>kEgq1t5HI$tAz>m--Y~1Og%Z{J zYN;$#wrJOu^4K~Mo+3`h_6Iy;QE^375pI=pflNs(dCgv_O@OVikSab17qpcNkwqg} zy)0Ieo0b#ZmS0vD56Y@9k$@2Xk;1J(uBcO6sZ0ntvItNEsQ6R&hThn9nFUnBBLO6b zkBN5Q#yI*5Q>6h=E39`)C}gv2E>PvDg_My)G7_ODpCK=mvARoC9hI65N92Fq;1=oN z3UXqkky_8I7WH_rL9N!Mo76=ggim6$-W1Mh5(TO@Jv=39T+3nknhsJt4y|Vt{0pTD zeHgCz=vZUY!bzygajIS^7BhRzTCHFtb)s6IpNypaF(y5tQ(1#u@_~2$GrA;4$Baj6n%fF7CW$)Ip}KySj=1fQPkR6Gp7jv* z^{BI%S_+*otdGEI{QgM=M`yxns0F~<(D2<594id|P*`kFg{7;lIy}^$U)&SQNYlQ3 zN9=26O*&lqp>99U>Y)*(*V-0folpv=K!SoUhnrjb6>dD8)h8GriCrG&b+PBb(2+}we5fE>hA?< zf8T$h@h$5HLHup_KjpMe9kSGvg1&U8V6Cbc*wTX!3bAmP86NmI_B)CJ4K&J&IGN)b zRWT4q>m8gR|2Y0bIt)Loxs$IfB8}nXHqV`=x62zF{iin9aaTZ-LMm=1y~f#&#hqFC z&&pkn(EnGeVi;wY{_;QLGthxS5|RX}J8r>(KnTx05BU5aDny442@^Vmghdthq^O@ymSB#d>q2hOgjDY*)5q$8h5geU} zo%Q1{?opqqQ;7JRj6sl~k>=#!Z%0TVDXE)x=A{u6T3uhnNQkiP+MHjZAKRrB^~A-| zMG_7E?(D8|_hUE6GcIhjm*7puKPSM6&b#k0yKIc>51c-Fe8jfL%DL$@zm)UuW8T_a z=V3gby8?D_XHw{b5?|O_^X@G1115~@)!&*XxcL@0mbcgE7JiMU;cuX2=y!?MlRyd? zUIy_nGVVbSEq)4)p5KS6Q6y8toMF)TbrRM77Hpu294GOO4*Ko!sfIE%gqSe`6c-dl zQlABTrR{)67fz-tDS9s2-E@lttz)Mi$MnATAr`$q@OVK#{3w~k*#o)$On)Be73hUc zgd5Bee4_d{h#9eaQMi%p+)NRUZ?)B&%e}#VIOlV&qdJ36yG{K!cf4b2mp<=9&))k9uUSbn1Lw@+WwpZH`aDOFkC75Zy@*CmRu*cY;4{$B zg+gTldP95T4@#FAS7FGX#87?~cnKkz@sV?NgisW9(mjREM*tsAY%7{5OlZ+f)t&=K zEjKa7-q2Ig{IRV9tz_4*NOLx3sz`T-0*dFA6^-Jw!p~{_lqRjz5C;}VRy6xt2;}Gx zQCY1As~G(pjoMSU0u{$YdUbjf>g~3C9(`8i;_bH4dI=l7atW6Vh3_Y$po>U_11(NJ zRuomJMv8v7&}bY*$=C$BJ0dK|P|vF_94x3$JDeW$;i1mo7e0!10_My?5zt=!f!bS> z#NQGu*%(kZ6Nv}TcBotk5r!uvilOi$mQ{UK&Hr6RcVX?7V8r8XtfTaCdd|Y3^u}jD zW4S-yyYOan?a|RtTNSxL#Qz~FkKNt%DPDFZkC&NeeueE~LroQ?WEYnHqoAUo!rP#_ zzP7%sY(d;S#hiKPP5(=SA1vDGU1gZtGGoy^U{C6X1QW~yb>gH?}#x-Oi-OL_!Wyu&{6u?}u>mwv?2je>x%IncW%Qd`1!_W7s>Gta5qn zz*R--42v^)m2X>XyElN7cYt?&Zj+z(X7okM*o_``2#J18Jlre1%p%psvYbK&n+wbO z{A9uL;N{L1Y_>#`)1Ih$Va_j)9uK}g6A|FOQ_NK;(>^pV?}NU6r|AJ=IMHFAfr3nK`8}mp6A`Anzv=? z&DMgea8c4xadGa^aBcrw!r-6|scVhz!gT(U#A2=`9zo7`Crg)6%?eFskf4Gkmzzmd)B(*LP>MTmYK~wObZHxbZVRF)oK^gNKXJ zwiyd|smi#Rc#Ls&Zl0F|70IQcuBE`(#%b7$IhR|TpMwYCVOb@5&uX7N0LB0Hx$0pc z(dU=Xlg+~H>bC*-Mme}^bMuyPkzXLN8}(SrYuMaZ(yZgr<>TLI@toC_6<2)iZ~)&C zo>-5?A8dy6;`K&aQe$OFHdrfQckn(~$&>7T!FKulYM>bD}&y@y{Hh36u7e5}*UiCY?#_@pP*l_w4nkqYu)py@SMG#2Z;V}^!nVtOPmUyY>v@3TP)q( zU@mV$G>ykETL~=Av0o3$2pgCj?Z5PjMIs;LI}&=cT&AIXh%-Zii;@Z)ICfpdPKw`6 zmT?0)PbK3{HUFe13yI6;UH^q6&zf>tiZOBWL7PKnJh8H|&d9uv2oVw(H)CtdW@ZwE z>~0h;Y7CSJDAeeMs^~s09}S0CPBkV2td9q-HZ9n);gsUn-d9&gZZ9j#2E$Ro!O4$D z;r)ad*emb15Fr3(I(i3qbQvC$o^^$VAq16}lZR<@zZN>#6uVn^EbA*}i-WdtRXFxo z{!Ou$4)4X=coQ9-gF^hA8QtzRvhoMR0z&6{a(G-Z!k&nG{!3^ zjS}^T3!JF3(7ew%WcES5#Eg8}~Z7 z&YrNiz2siRT;y615akL7OLCHXf$eYi+oSF=?s}9|^c0t=&vM;AK3}tkBN+z_WG1ec z+TabXvzb_LlGbg`hD*%&ZLdMz**QiI&2DRd zm_6(#loxEtDmI>=GkO#_NgGMM@wKp)U~zj`ITzPB8MC^Ldd8G;TMM$OjMmEy1^?Qy zy;%JAj|A`Hs%C$yftIYhH3409dc)~?`h4lb0JL8J_HLg6#H7W70dTL4b0u;@z=-Le z{Tb^&WGiqryaGAVEgxvv3>2N^4QvQ^tz6QSY5=Gdu;#D=m`g(il}r$j$Lj>hlxKcDvq`QDo-N{L#lNBPny z3|In~o6CF((rKc3di%C^s&2=AuN>}F{TSt}U=iBI-TFP++$;yLB)fG)uSO%GgF_me>49^4MqFJ{Ff!S0U zWJ{pdiYO0a+ODc8Q#RDJV?w6mbd)p`GZA4$XtJmQ(~~mL;bgpI%}+5}H7yF1z{K1@ zf(a!Cl7tM)BdRwShBHFKj06sCL$k^mW>^h;*aHQbZ^LxaGvlc-?pF2FKwzqNTSY@5 zfSs1QuiB*B7blUim5j3+z)dv{+b&vi=!xA`j+Tl+t}QdR*1n{Q-f}Q`$*KxbG9xPu z-C-VP_VJ=A8BuM5nW~b44qE_XC?Um)>l-McrbZ60W*?HegetlOko>rBt&`t=S}4n2 zn}T=EHz1Xn4u%EqhY`g6bvrq=wSY@~i@hvz^V!nF=ShsNQA^}gu=FCxOVq%)X zxopFTZBbIfbWh=M*zwAy=EgF!3cnnqJFyG%8$^OI@JIIGJvlj>M*y46;UiAmUrD5CDReGpO+BrmD!3WGU-|E^5*~ z@UOS-BFC!GTiGxB!TgOJI#Gx`J{p#8wnEjj!e`!$!o0X0)CH3$YQB+5XzNtanuP+}zK;NUDv%nruWz&i3GbzBrbS8c+xDs4Q>^b)2= zZ?9UJsjVPn)ZQcV6YtZuQhK3#XIIp;j+$CRnrVOF1B^;L8-L&gEQwY9s5V_5jZcy8 zqgaIem5dG$?e7o!2*Ncn^pfEAz#o5jc^P>wk78O}$*{j2sYB1%1-}kfU1k%E_6MUb z=B11`@nRC~AYu{iw?s&>gk~&ivEB?d2|wedlvGQ>zD5Xz;l)8lOH6jt*qq~Vc8mE4 zd2}v9=$`@y4SUJ?#3)K+7U(X$I#ycQ@N5zVh)|{zEI|R5I0Gy$jD6&xIp>aq9n|C# z8eDcpMrkK8k|W%77u(A1KE@O3Um^o;?v%7kVR$*Yh9q4EyDt3(efzK_ro~c0CQN5t z+W~VXM=mPXTWfmW9Q-p!8BSo*uY0~599{+HuCmVS3XU>yY%NXvpNk9C2<`kUd%`~+ zFW2jR-w=ZKn*J4Sqx}rwPOw zW4s{Dc|15e#&)er8hLs)mVduHrJ(tqRJd~btgsmF2hr{HUcWDj6F#StM`%r3a8N3H zCB+f{^fWUgCjlEwq69Kw!|w&K(-658?prW0*~!bvi}R@3vn;F#r4#v=K4w$UlpG&r z1g2-(*`8)^Hdh?z7*~lXWVJ5JJh*ZR3yB$eQtzGOIXYu(97SD(l_F&1v)k9=oL>DK zN)C#mHeTFjJ~{%oA06c~`N0Q!iOm z`JS8onz*f$4D(EHkeXlg<8f3(XARsRbBkT`GHk1SCkC?1HRpFYGwu>di#D|c*XOq) z#o6;xSr=D0g6hgu(#n}yZ^)h^LhvpvUZhTbLr`=qTlP=5KqfW}a#pq{0j<`O(uUS< zQW8qjrKKoqlUV|mGBb6PvuSq(aH&@FYl5u6jZ_Mp_3yRZHdiZ~9Qz|BuinKPu^GJ)^fFtP zh`5y(4@~3L<9;a}9N6;zJPA|5H#QJP*704fr>#E6l_EATP%P*s9pFgo7<}nJV1qca zk%`0irk|tgFm|xfMAFhx5ky_Qj@-@pTV1a_KwodY|BK(Ih}UnnX$(TCqVL~7zxpd3 zo%bPfh|BDF1>NS`R>K9qeZ1uFxmz{=FpvlyeCL65%|wp#1c5xYXqplFy4dM!lc>T6 z`a|qh(UHuFqvW=H!0f-2WP`pkVW2zAH5|?3QX40cqQ4Q0fkUgSm93Q?+yc`8QrH*~ zedRd-TmU>D+Sdu&?|8QcLok5LO4-{95(cRfb2T}4X#z*^sJ^eYrCE%F zZRQCa=+mY23ge`xr0kaJ6NWLyDZDmQ(jvC}K_*LJ?HcI;8hI-d8+Ckhyr5b@n_UXL zgr1spq((FEuCIa0xl&_(FY`##y7DJA?NXU#mo z!gs5uzFP6=GODliYOo0OzC*yIEC*fNIA@}_Ds_4oB?0;c2QaeKy`s1@G(_cZzmF^K z0q3O{NcH6L7YsjFfsGam1M=Q=GEn!g)}zeFC=OgUQwitoZ@8elMCH~-0Lgi!k1vuA zM>>XrtCUli0&?p|b|es?EnFS#ox%64!5Icw07!ek?MUNpLxP>HC?sCDEuMtgedDQQ}#`(`}G+@j4|l@;ID`Bnc|cVq(KQc#`lFx=cZL+;e%2wPI`Y> zLBDz4*O*@hq1ErSrL2m&v{7~vRa_sz+V=osexf%8{I6sj=~&T!rRHILBuO>G57BQN ziE<+loCL_E=FWe{8QMi7eF6W2uVF?<^@Hb7B=MZyHtH+Dc5FrorAT8av_JeWOP7WW zhZ?n9n{lZ}Jv>6;h`Kf3^B*AXY)Vo4S}r~I{|n-|tec%yKWl-d-f$^<5C5aYx4wtB z(9_dEs4;uxTvo5Z(~hYl~4+|=v7}| znWEFnq`vxB(r-=JnbVKd6lfs&N49^h{}6ir?DF-N{I~v3{qK!N`p>G}d$<^_z<*gn z7n{lpON+ofSz+41|2;sM8y@nT5K{!WkAYgtFoV?$0#;o8De1()hj4RgSJLxv8c94x z>`aVd53Clkap?D<(vE6_q}7n;rXu>?`~KE#+=x#eLfX@H6%R|+(Ks>%mPzn-fLCqa z)LGl7#6X*W95FPAL9{)j`K=K`#NE^Wfe%;bd56Fy)7BcEu4iHME>`Q7aOWV2=N$is zHEGa~7H{IGy#fl6zPWjznoE>LPq1h$%ygf-78Yr(Yw!jWqQlXc1~ZZR_K`*F*r7YvvKTr}(O$sRaz)IX+D1 zI#Fd@>0_ScWORP;2S?3+&ukEJ#xrmIXv^{8gYJ4{jwD276C!#ab-y5eHEC$j9B@6| zt*NQabsIe7V4CkipWMCI$)!VIOU5wwnQD^`4`jmRrkz}yI5Zwj-rG6D{z9XB&1z(8 zZc@}Td3=s=0H>2|r;NQ5@bsM|%g#7Tf6D)kByFG8A~0%&nX@JTK6o((qsh$AKX+J` z@KWk<6d&W8ojgW=f6+}BAS?D7!<53A1aaEj5E{ExE9q0F*X==f-HUycZ>VYW=5E$p zT{93V5Q8T)zNCc7yx!LR=8(lbLG^oC8A}*kByLXQ^rVm8oKfhZO^5GW8Kx4e{b=HI z)0eqQjO>E}s*VYAC(Qy}v@l8Tn~0gQF%!keT(of7(KRViis(;`tAUH0r{{FQ)DsPJ zx};x4p>CExskfhuMh52wmj=O_$(su5^IA4+^c$&-+p$`VqIt#q4VK}~-h)nmkq^H2& z8x%O^Vqkj&>FGmn3697!+D{?Z+5B<*(Q6R5q4kG}&sVFLFXy{nKH~a>*?ZmHR1i!b zSr=>TC2Gw3kZl-iM%p5$2;VN2AtS6yF&Y~i@_XBa_O*{$-DvL?s-{TFec|(SP$?#f+59}KYAQ?+BTMHi z0)aF(ye9&yuLM=D zR?%STPT^AYxg*&t=|K8Hq(h1JE;GqtUCg6nGOX)wZWo4`hXp(r zhrVNzL6k$uK+KZPTAmR3)^~71Kf12_?M7C7ixC<`dLW1M&zz7s-m9a!-BUW{1KmY~ zkqy#6T$!vFP`{iz7^LT3`PBZalc3)Y$b7eyL_3WHj`n_1BQCeHD%Zp3N49|8;v6P> z7;@R3*Yjr0JQlk4kB6(mxMmV)j`4Gm-46;m9C3XHzyDG z+vqr~$J?k8bqBeS7^YmH=kQrvJ@~K8=G}AxZd1N%wwz246DJ%JWPh%$yG}2II~_}i zo{ZXkvE{aik*R@AWNDrAciJVleaO1Q4eqyW%M@f$+}JvyoAS&V6P<^<-!zfjEkEnu82~5RDH8kKJ z6stMdxM0yGgk>stU|kA$mz4#g@G;0~f1i(;SC>;{+_l>lh$INJ=Q1Xg_lTjx)#FDa ztd7J&8VK~UWfh7wf3OI`ob`uMSJ&9XDk-jkA9Azwl^sq~3&!MMfkJ@$XKR$E3Z0r& zV7Ps9f}&;p>hU5!ceb*nr=zm9M4ll5K~h+FAO7$Ljt7=Zw0>K6cY7<9!m1%v_|g}o zqs8aFlnP4TV|`?Pyvlry%py%D%Z;ywozC0XxfmbT;au{+4)!rXKvxT&MV>H|K1wtu`| z(H@6+z7C*RN|KZHk;4X2G%%LScN$H0%?UDBS<)uDxx@n87=m4HEFJwGhb5HfP8y$| z|7!B&csx82Hmh(_VZMvG06IZ>?784u*hvj3bB#u|!AvS3%AW4-Z1*;b3Vy47Nz>3K z)}f`PIraSV6I#=LWo1M!Dbk3l>QI^LK@r!U$>Hcte$gn0VHlfPa=@%z~~uMy1k;f%5&xaQ`HT z8DWN4Nj6$#T~UV+1tTU#DSTJ2W~5Ho%iNS9(v^>sppCCV6SpaF^U3Y}=&f?0?2e-d z^0x~EC*x&BRIDK+PxS;loe^UBf~ELmch(8u$=~&NQefC`m1hoe6aaJhQ-ObQ)sXDx zf?IMfo`xbZhXVmW|so;E~$&#L|0GawA_Tk4%n}weW%BpvmZ|* zMO~hV~r>7O!MIH_(gq2$GpvoZLshH*Y=)%k1HoEni z=XEio=c!GuRaAHD}lVg(cAc zN4JZSCcchHfjDZ&p3lm)8k?MvC)zWPx0^u5J1z5PwbDj179qfb@ReIh^tP7?gWA%F zGzd^f5iwv*x`z~U=Ch5~tFu@wED#XYVbW~nut60WlPVUwGeQGgYikz zdaCr~9bmQsm4oWb(pB-*8CJ2k)6>%@!`umADoI5XY+ZB%kZv%``?MuFG@pFc>I&8Y zmus`SYH}oW2dM%^Db0p9XJNy#MfJM%3^uKC56Lt#j@`Ewlr84A7EFeXmsiRN>6#En z;MMOv)`&y9W7E0~=2WD75Hga~4DZU$1?L4$2`wGUDihN_dAr^uV~G{9T_oWuYR#Z) zmq<3Vf6cKYb&Q16ebm`xd4|u0$!gRA%0~9eikyx(cyrwm7(nlAl`c~V4CoxJ&GkF-cQm)*&G;qg zJ6?Q1pw&2FzW#x{$R;v=B9d%*^{~@7!11aqs^}CdEo^fv%mZFzI!MiIJ>7ZrQ-~RI zuXf%4`OTh(5dG|iLI@@kx_s?S;9(>>1LWn*t{zQ$pBodN>S^|^dSJxCm(hp;D4dFt zH5j5KsY6eLZRx}Aghh4vt?g83rjNg-3Y^p9?YcdD<=OmqFbtz;>E4q55EUD{J^z@S z2F*oSL`VS0pE34^A0>&vgVpQ@^m+MMNR$%LTNfCQmn9(StG`g>XJm`FLQc(PS8~5@& zPEaV*{c`Hm$=A&7+WImXrXmus?+yg{JjJwhQA*N1{f4Dv=WOpJ>$rV+G=%(_QTvz&;!)A3Kt3VAeEdgEhi4J2Oo{3!rWZIhj6r(HXJUM~6b~Dj zHC;E^Q|_cvrT|GPWc2%!m%ATc81?zA_4E_B={G1{#w7KtL;JfU;m7kC%#jv#+t}_@ zC!QEX8O3K7H1JlZ_Lm5|sK0px4rUNV{sw^k`{)dVej^4rXje=PzkL&`t2e%LHOB?S zJu^eAuNfIRSC0Ke6N*%Gpj)p^gcU06eU7RUQn6v%w10|upXt7f`F7TU}kX#7%}kWK6pdF>agC;Op6WGqN5~$`B$kzz1Y$`xigW1nT!sTj2W@h*55js zF9VQAD2McFc*wINSGPfBN7dwS$Klx-5!bvPwQ=#vd2S0aMhKl4(m$dP@sA zsrg*sIzcRkMn3&(WYxwv&zq;EdSU?f*t%k!E^^Nf()&n!<@n-QZ+}Y1ckFxUMYbXN zWAgBSvC`id$<|5CO*>VRp*Hy++C|>B>Ef6EqLS}gNW(k6amW)f{cfb-9kI)gLaaN$f zmQ2ZwO=*0JQCgioUR6hn0KPExQ-ZXHgfmKQercb@QuOP`@vAW96A;XM;;5Z&S-?h(L6k!5x`azqglQ+LRh9!im6~MBe*PL zmS>2gm@yO8_t=<5PE9Zt-nD!@V^{z{d4?ZliqOb4^C~E`Yv$cEHkGq;=DR!JqJ1! zU*YErZUqu!Uq0uBbhKnR7uGf6i@AHF23x>7$L5+JYsJI>XciZIM^pqf%JuI6Hl zYnlCRGfiS`5>dy;B)qJmueL?OTfeHbz;pfF@?FI1Qypu{sWd~jlwrwrV=$962(VsC zzpIc5TaUR>-)_#1)~0SIeMZwAfhkmCWB+=FIl4F8ev2=*e7?LGO@j~~K&lKSjx8f} zV<0`ey4ap_NN&pdu?qr2si-hOKx0x^3$ntm6RdB|8WkG80BhOwI1k5)Jjw z+?k=ZdgL(dR~s5m$o2(R#g7*fPjjne7jSs@u)20X-(TfI{O;#BA;0TrjM)qWAf6A# zpI^O+7Da(eu+H7n*$D6MpLYH5sh1J243bJq4Vq8ri+WT(X)#%*y2Ke^u*bY zv)oVT#5~o~d`abZkeA@kmzj_|tIW*?{VH%vNn2yoIan*<*<>s1ga024uh2?#WTJy? zVT+^jAIcOQ_ARs6!4hc$+M`8etmvI0N&xZ%LlpxcJUL$pVoz=eh5O<7!y+$$!6z+k zgyOxU>*t57gq*`L55n*_*i^FNixvdMln&Uf6z_Q81x0_J8S1Vhs6k$!Cc+d8rb`P8 zQ#=iF;(VOGrL$z{B|%XlzDHw$=8zkuwS~upi^t|X@2B@opwR_F#9{2)7WS}$yz79F zrwCcy5R;0Y)dH{=5~;-3eB}{adgO1zK?4H@?<#s7R#!XD^;zGMar9w%IY*JpjjG0F z3pE(KZWumy?P$m?J@@&0xcvOnbZ>jVd9va}lO?(RY@^t|OHh z*3m&z^)e;awR?JUeCElp&`%pZOiSwwk!X;ndFdnu1qu6?B082sKk1%b=1o&dZ?fMo^hkwI%`AE;&;7vSN^z04YLMY9zX1yL}dIL|FOSK60bVv}Gi5Nz`zHIwuZZW%i~O ze~nFfwN1SxTt?>9o?u531LxZkOuUcyO)SK$_0z|pxAgF??SWZEW_`V+C1Gmced`z> zM6gGpT!MYSJ(HM0tow?=Ugu&=u*_j2A`+;B9y0)7XAW&Qt4B&^pA!}(K|gG>4{BbsRZ_ocE znD<d=-@kp)?ae$I1`EK+DN1?G#>YMZ=9Q;{R1ZS>{7z= zwh-pY-cYJh8|JFM7lP6SGJ)8ibE4D|OV;Dzj?QfBX7pZAA)3=&IfIFdmh;h=F=8sg zrU4u+`qp_29PB_I&7t;6>j#h8wd@cwcK_qv1!6jz{4ipD>-;c3#Nb{&3@gAxbIpOL zG=@!pP0f((KaJP!wp9@>PTT|(U#rLw3SPfOsU9aNX(4PFi!iFk?XEg zYBM=@TdKJ*G1Lqi4P%#F!d$QoB}dE*3NsksjyTwO+61 zv$9VF`kSn^UJC#)2{`H(1i&f|00@(Bzkw~E!{>4gVs|_eXmdj zs_FMfrpT=q$@?7t*==gD#=V2Gii$uuyB`(0gjHRqZSa|2JyHeM?74d8TTYE*ghk(r zRWyU!0d*rJzM|x5Prm;z(GCmcXM^=$2?64{k3@#J{Psj>r>>;umQ^T`gt1|~L9-Nr z1YuS1-V&>4cnbigk77;G)s^VsBd=VbHcmLQ~XE|oCGlhAFS)xr=w zPE~K`9k9KrVT)&%kVquCCCH3(EH+naHrUS>o}ha0$-e=R8O>DHxYy%!5E&UsjLDX5 zn|(9MWd+1h&+d(f*F#0)E9@8TAO7h9WpGmbl(+jD(p0XEVd*d%i_4c)uDFbGB=wYw zxha3^dQsLue}R&02r|pBzBJJ$ZgP#Vb0DtCHP8l~d4V-u=uvkP%!a1>x0&5Uw)~p#rMs-x}wR_N{_ttf(fft z>J89*=Y%M)*ho`gr%Tg`OZC}>hG9F&co|g)$y(e3>o<>BaWY|(w;U=eHBx>S<(-*p zvSd65%v`f{LSXhw9|xjA#&bU3bDb*OpeiWe&g*MVfvsl{VBVAPNVcD1lKhkiru1Ul z4i~}1HEsKpq>>Vol4|3aK~|6r1#dald>?i5E&-gDt7rLoL9Df=1yWEcDX1To)DjY_ z8Np;XBtG=0{plT@Mz2o#*L+JYu^cYZ<(@Km+NBX0(JfSzJ*I@Vy8%$hX2?@U5j2^n z0*gKafKPo0o^c;-iYDQ!;VBdrI(Rt>+JDlNIRJbi`$J)pUdjL}9*+RtT&RSRt@NV1>Z{KLOchA?mMiOZ#F`u2pVzaQ_3UaRp#_I@kD!Mb2}Y zY;(_eukktn*1vyo;*%HA!W4Otf**XzpE?4o)vRGTRHKfze9kogNt9{pOT^=Y?y!U7 zSa4_WzfYz8IhAYaeurkV=cclOtR*B8&om=|V8pHO{_*CUGl^v5=qgPi`A51DJ>@m8DN}M;~g|-V%U~ ziE23{jGXjSmduIiaQ2(!C-D6HXs1nQGdtC6RR=o|-r+`ui53YjR(e-vXmt}xgq0^v zj3wg)yF~r-quu4sPLcu%x+R>Fp^{WVudxQq+k*_Lf~u$14WD;Sv|)r|tbGt6Z7MXW z5*qLi?J!SvtLb0J!;vqL>j$H#^F3moF&-sfE9iN7O%bTmU=FhMOQo0ziHhGc69qpC)&TO~vS31_6 zxqb$+S}Ywg1X(Ot;O6gU!AdAA-e!xf>m!CVK{6&yw97@}8i>BVY?>Pu(-AobC8yU% zJpZ^>uv@}?qi~NxOux%Z+8vQWsQqD|b!&d>6EE68->4jdnp8Sn42L2L^ZGhxxj}Rt zcmKyIslQ@0(T?GWBXhtxx#VUDSuI4MFc&uF6(zm;ButPup43bpH&k8E`@m~FX!;De z(79hyTvqgj8geb+lvEy~?s4xVm7*y*Gl(3-{GGL1`pN(@2UMYw}JX?N$uoUetI# z=nauhC|%;~qK0CIU>OHG->Q{YljZ`oWjGBh(rCr3l*Vb>9A6iV zoXG#QXR^Y}{VD78k;L|l;o?i)J7Fn0gU^+O3<$e$lvJFeC-u85M+@$9HV<5nC{W|I zRL#E5aCY>$U1Pnb%Xa7g$z>KEl8aC_M27Artrq2FuKc!GK)62$0F}NE4 zLQFeEtDrMrzu{@GuuHc7KQjnLl~dBuOWBgFo%m+x@A~P^qCn~F<|vFYtim%}NgJ6X zI}}~Gc(KZ*XNTeu?UoD|wQe8*TijFT?KRFjSv@-0esy>|9Pt{7x;3>TugSXV_2QF{ zj%vmM+CbT2dl{kF$hnR%{Zy#r^i8nL!{LJ`Yq~Y@?uz#*(&HXzM8c#0+B+H(O3v9o d-CeETU2A(|DE9hP7rYq|a3s)=efZq<{{q#`W-b5# literal 0 HcmV?d00001 diff --git a/basicswap/static/images/logos/basicswap-logo-dark.svg b/basicswap/static/images/logos/basicswap-logo-dark.svg new file mode 100644 index 0000000..25022fd --- /dev/null +++ b/basicswap/static/images/logos/basicswap-logo-dark.svg @@ -0,0 +1,46 @@ + + + + + + + + diff --git a/basicswap/static/images/logos/basicswap-logo.svg b/basicswap/static/images/logos/basicswap-logo.svg new file mode 100644 index 0000000..e16e430 --- /dev/null +++ b/basicswap/static/images/logos/basicswap-logo.svg @@ -0,0 +1,47 @@ + + + + + + + + diff --git a/basicswap/static/js/libs/flowbite.js b/basicswap/static/js/libs/flowbite.js new file mode 100644 index 0000000..0664249 --- /dev/null +++ b/basicswap/static/js/libs/flowbite.js @@ -0,0 +1,3994 @@ +/******/ (() => { // webpackBootstrap +/******/ "use strict"; +var __webpack_exports__ = {}; + +// UNUSED EXPORTS: default + +;// CONCATENATED MODULE: ./src/components/accordion.js +function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } + +function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } + +function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } + +function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var Default = { + alwaysOpen: false, + activeClasses: 'bg-gray-100 dark:bg-gray-800 text-gray-900 dark:text-white', + inactiveClasses: 'text-gray-500 dark:text-gray-400', + onOpen: function onOpen() {}, + onClose: function onClose() {}, + onToggle: function onToggle() {} +}; + +var Accordion = /*#__PURE__*/function () { + function Accordion() { + var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + _classCallCheck(this, Accordion); + + this._items = items; + this._options = _objectSpread(_objectSpread({}, Default), options); + + this._init(); + } + + _createClass(Accordion, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._items.length) { + // show accordion item based on click + this._items.map(function (item) { + if (item.active) { + _this.open(item.id); + } + + item.triggerEl.addEventListener('click', function () { + _this.toggle(item.id); + }); + }); + } + } + }, { + key: "getItem", + value: function getItem(id) { + return this._items.filter(function (item) { + return item.id === id; + })[0]; + } + }, { + key: "open", + value: function open(id) { + var _this2 = this, + _item$triggerEl$class, + _item$triggerEl$class2; + + var item = this.getItem(id); // don't hide other accordions if always open + + if (!this._options.alwaysOpen) { + this._items.map(function (i) { + if (i !== item) { + var _i$triggerEl$classLis, _i$triggerEl$classLis2; + + (_i$triggerEl$classLis = i.triggerEl.classList).remove.apply(_i$triggerEl$classLis, _toConsumableArray(_this2._options.activeClasses.split(" "))); + + (_i$triggerEl$classLis2 = i.triggerEl.classList).add.apply(_i$triggerEl$classLis2, _toConsumableArray(_this2._options.inactiveClasses.split(" "))); + + i.targetEl.classList.add('hidden'); + i.triggerEl.setAttribute('aria-expanded', false); + i.active = false; // rotate icon if set + + if (i.iconEl) { + i.iconEl.classList.remove('rotate-180'); + } + } + }); + } // show active item + + + (_item$triggerEl$class = item.triggerEl.classList).add.apply(_item$triggerEl$class, _toConsumableArray(this._options.activeClasses.split(" "))); + + (_item$triggerEl$class2 = item.triggerEl.classList).remove.apply(_item$triggerEl$class2, _toConsumableArray(this._options.inactiveClasses.split(" "))); + + item.triggerEl.setAttribute('aria-expanded', true); + item.targetEl.classList.remove('hidden'); + item.active = true; // rotate icon if set + + if (item.iconEl) { + item.iconEl.classList.add('rotate-180'); + } // callback function + + + this._options.onOpen(this, item); + } + }, { + key: "toggle", + value: function toggle(id) { + var item = this.getItem(id); + + if (item.active) { + this.close(id); + } else { + this.open(id); + } // callback function + + + this._options.onToggle(this, item); + } + }, { + key: "close", + value: function close(id) { + var _item$triggerEl$class3, _item$triggerEl$class4; + + var item = this.getItem(id); + + (_item$triggerEl$class3 = item.triggerEl.classList).remove.apply(_item$triggerEl$class3, _toConsumableArray(this._options.activeClasses.split(" "))); + + (_item$triggerEl$class4 = item.triggerEl.classList).add.apply(_item$triggerEl$class4, _toConsumableArray(this._options.inactiveClasses.split(" "))); + + item.targetEl.classList.add('hidden'); + item.triggerEl.setAttribute('aria-expanded', false); + item.active = false; // rotate icon if set + + if (item.iconEl) { + item.iconEl.classList.remove('rotate-180'); + } // callback function + + + this._options.onClose(this, item); + } + }]); + + return Accordion; +}(); + +window.Accordion = Accordion; + +function initAccordion() { + document.querySelectorAll('[data-accordion]').forEach(function (accordionEl) { + var alwaysOpen = accordionEl.getAttribute('data-accordion'); + var activeClasses = accordionEl.getAttribute('data-active-classes'); + var inactiveClasses = accordionEl.getAttribute('data-inactive-classes'); + var items = []; + accordionEl.querySelectorAll('[data-accordion-target]').forEach(function (el) { + var item = { + id: el.getAttribute('data-accordion-target'), + triggerEl: el, + targetEl: document.querySelector(el.getAttribute('data-accordion-target')), + iconEl: el.querySelector('[data-accordion-icon]'), + active: el.getAttribute('aria-expanded') === 'true' ? true : false + }; + items.push(item); + }); + new Accordion(items, { + alwaysOpen: alwaysOpen === 'open' ? true : false, + activeClasses: activeClasses ? activeClasses : Default.activeClasses, + inactiveClasses: inactiveClasses ? inactiveClasses : Default.inactiveClasses + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initAccordion(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initAccordion); +} + +/* harmony default export */ const accordion = (Accordion); +;// CONCATENATED MODULE: ./src/components/collapse.js +function collapse_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function collapse_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? collapse_ownKeys(Object(source), !0).forEach(function (key) { collapse_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : collapse_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function collapse_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function collapse_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function collapse_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function collapse_createClass(Constructor, protoProps, staticProps) { if (protoProps) collapse_defineProperties(Constructor.prototype, protoProps); if (staticProps) collapse_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var collapse_Default = { + triggerEl: null, + onCollapse: function onCollapse() {}, + onExpand: function onExpand() {}, + onToggle: function onToggle() {} +}; + +var Collapse = /*#__PURE__*/function () { + function Collapse() { + var targetEl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var options = arguments.length > 1 ? arguments[1] : undefined; + + collapse_classCallCheck(this, Collapse); + + this._targetEl = targetEl; + this._triggerEl = options ? options.triggerEl : collapse_Default.triggerEl; + this._options = collapse_objectSpread(collapse_objectSpread({}, collapse_Default), options); + this._visible = false; + + this._init(); + } + + collapse_createClass(Collapse, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._triggerEl) { + if (this._triggerEl.hasAttribute('aria-expanded')) { + this._visible = this._triggerEl.getAttribute('aria-expanded') === 'true' ? true : false; + } else { + // fix until v2 not to break previous single collapses which became dismiss + this._visible = this._targetEl.classList.contains('hidden') ? false : true; + } + + this._triggerEl.addEventListener('click', function () { + _this._visible ? _this.collapse() : _this.expand(); + }); + } + } + }, { + key: "collapse", + value: function collapse() { + this._targetEl.classList.add('hidden'); + + if (this._triggerEl) { + this._triggerEl.setAttribute('aria-expanded', 'false'); + } + + this._visible = false; // callback function + + this._options.onCollapse(this); + } + }, { + key: "expand", + value: function expand() { + this._targetEl.classList.remove('hidden'); + + if (this._triggerEl) { + this._triggerEl.setAttribute('aria-expanded', 'true'); + } + + this._visible = true; // callback function + + this._options.onExpand(this); + } + }, { + key: "toggle", + value: function toggle() { + if (this._visible) { + this.collapse(); + } else { + this.expand(); + } + } + }]); + + return Collapse; +}(); + +window.Collapse = Collapse; + +function initCollapse() { + document.querySelectorAll('[data-collapse-toggle]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-collapse-toggle')); + new Collapse(targetEl, { + triggerEl: triggerEl + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initCollapse(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initCollapse); +} + +/* harmony default export */ const collapse = (Collapse); +;// CONCATENATED MODULE: ./src/components/carousel.js +function carousel_toConsumableArray(arr) { return carousel_arrayWithoutHoles(arr) || carousel_iterableToArray(arr) || carousel_unsupportedIterableToArray(arr) || carousel_nonIterableSpread(); } + +function carousel_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function carousel_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return carousel_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return carousel_arrayLikeToArray(o, minLen); } + +function carousel_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function carousel_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return carousel_arrayLikeToArray(arr); } + +function carousel_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function carousel_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function carousel_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? carousel_ownKeys(Object(source), !0).forEach(function (key) { carousel_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : carousel_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function carousel_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function carousel_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function carousel_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function carousel_createClass(Constructor, protoProps, staticProps) { if (protoProps) carousel_defineProperties(Constructor.prototype, protoProps); if (staticProps) carousel_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var carousel_Default = { + defaultPosition: 0, + indicators: { + items: [], + activeClasses: 'bg-white dark:bg-gray-800', + inactiveClasses: 'bg-white/50 dark:bg-gray-800/50 hover:bg-white dark:hover:bg-gray-800' + }, + interval: 3000, + onNext: function onNext() {}, + onPrev: function onPrev() {}, + onChange: function onChange() {} +}; + +var Carousel = /*#__PURE__*/function () { + function Carousel() { + var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + carousel_classCallCheck(this, Carousel); + + this._items = items; + this._options = carousel_objectSpread(carousel_objectSpread(carousel_objectSpread({}, carousel_Default), options), {}, { + indicators: carousel_objectSpread(carousel_objectSpread({}, carousel_Default.indicators), options.indicators) + }); + this._activeItem = this.getItem(this._options.defaultPosition); + this._indicators = this._options.indicators.items; + this._interval = null; + + this._init(); + } + /** + * Initialise carousel and items based on active one + */ + + + carousel_createClass(Carousel, [{ + key: "_init", + value: function _init() { + var _this = this; + + this._items.map(function (item) { + item.el.classList.add('absolute', 'inset-0', 'transition-all', 'transform'); + }); // if no active item is set then first position is default + + + if (this._getActiveItem()) { + this.slideTo(this._getActiveItem().position); + } else { + this.slideTo(0); + } + + this._indicators.map(function (indicator, position) { + indicator.el.addEventListener('click', function () { + _this.slideTo(position); + }); + }); + } + }, { + key: "getItem", + value: function getItem(position) { + return this._items[position]; + } + /** + * Slide to the element based on id + * @param {*} position + */ + + }, { + key: "slideTo", + value: function slideTo(position) { + var nextItem = this._items[position]; + var rotationItems = { + 'left': nextItem.position === 0 ? this._items[this._items.length - 1] : this._items[nextItem.position - 1], + 'middle': nextItem, + 'right': nextItem.position === this._items.length - 1 ? this._items[0] : this._items[nextItem.position + 1] + }; + + this._rotate(rotationItems); + + this._setActiveItem(nextItem.position); + + if (this._interval) { + this.pause(); + this.cycle(); + } + + this._options.onChange(this); + } + /** + * Based on the currently active item it will go to the next position + */ + + }, { + key: "next", + value: function next() { + var activeItem = this._getActiveItem(); + + var nextItem = null; // check if last item + + if (activeItem.position === this._items.length - 1) { + nextItem = this._items[0]; + } else { + nextItem = this._items[activeItem.position + 1]; + } + + this.slideTo(nextItem.position); // callback function + + this._options.onNext(this); + } + /** + * Based on the currently active item it will go to the previous position + */ + + }, { + key: "prev", + value: function prev() { + var activeItem = this._getActiveItem(); + + var prevItem = null; // check if first item + + if (activeItem.position === 0) { + prevItem = this._items[this._items.length - 1]; + } else { + prevItem = this._items[activeItem.position - 1]; + } + + this.slideTo(prevItem.position); // callback function + + this._options.onPrev(this); + } + /** + * This method applies the transform classes based on the left, middle, and right rotation carousel items + * @param {*} rotationItems + */ + + }, { + key: "_rotate", + value: function _rotate(rotationItems) { + // reset + this._items.map(function (item) { + item.el.classList.add('hidden'); + }); // left item (previously active) + + + rotationItems.left.el.classList.remove('-translate-x-full', 'translate-x-full', 'translate-x-0', 'hidden', 'z-20'); + rotationItems.left.el.classList.add('-translate-x-full', 'z-10'); // currently active item + + rotationItems.middle.el.classList.remove('-translate-x-full', 'translate-x-full', 'translate-x-0', 'hidden', 'z-10'); + rotationItems.middle.el.classList.add('translate-x-0', 'z-20'); // right item (upcoming active) + + rotationItems.right.el.classList.remove('-translate-x-full', 'translate-x-full', 'translate-x-0', 'hidden', 'z-20'); + rotationItems.right.el.classList.add('translate-x-full', 'z-10'); + } + /** + * Set an interval to cycle through the carousel items + */ + + }, { + key: "cycle", + value: function cycle() { + var _this2 = this; + + this._interval = setInterval(function () { + _this2.next(); + }, this._options.interval); + } + /** + * Clears the cycling interval + */ + + }, { + key: "pause", + value: function pause() { + clearInterval(this._interval); + } + /** + * Get the currently active item + */ + + }, { + key: "_getActiveItem", + value: function _getActiveItem() { + return this._activeItem; + } + /** + * Set the currently active item and data attribute + * @param {*} position + */ + + }, { + key: "_setActiveItem", + value: function _setActiveItem(position) { + var _this3 = this; + + this._activeItem = this._items[position]; // update the indicators if available + + if (this._indicators.length) { + var _this$_indicators$pos, _this$_indicators$pos2; + + this._indicators.map(function (indicator) { + var _indicator$el$classLi, _indicator$el$classLi2; + + indicator.el.setAttribute('aria-current', 'false'); + + (_indicator$el$classLi = indicator.el.classList).remove.apply(_indicator$el$classLi, carousel_toConsumableArray(_this3._options.indicators.activeClasses.split(" "))); + + (_indicator$el$classLi2 = indicator.el.classList).add.apply(_indicator$el$classLi2, carousel_toConsumableArray(_this3._options.indicators.inactiveClasses.split(" "))); + }); + + (_this$_indicators$pos = this._indicators[position].el.classList).add.apply(_this$_indicators$pos, carousel_toConsumableArray(this._options.indicators.activeClasses.split(" "))); + + (_this$_indicators$pos2 = this._indicators[position].el.classList).remove.apply(_this$_indicators$pos2, carousel_toConsumableArray(this._options.indicators.inactiveClasses.split(" "))); + + this._indicators[position].el.setAttribute('aria-current', 'true'); + } + } + }]); + + return Carousel; +}(); + +window.Carousel = Carousel; + +function initCarousel() { + document.querySelectorAll('[data-carousel]').forEach(function (carouselEl) { + var interval = carouselEl.getAttribute('data-carousel-interval'); + var slide = carouselEl.getAttribute('data-carousel') === 'slide' ? true : false; + var items = []; + var defaultPosition = 0; + + if (carouselEl.querySelectorAll('[data-carousel-item]').length) { + carousel_toConsumableArray(carouselEl.querySelectorAll('[data-carousel-item]')).map(function (carouselItemEl, position) { + items.push({ + position: position, + el: carouselItemEl + }); + + if (carouselItemEl.getAttribute('data-carousel-item') === 'active') { + defaultPosition = position; + } + }); + } + + var indicators = []; + + if (carouselEl.querySelectorAll('[data-carousel-slide-to]').length) { + carousel_toConsumableArray(carouselEl.querySelectorAll('[data-carousel-slide-to]')).map(function (indicatorEl) { + indicators.push({ + position: indicatorEl.getAttribute('data-carousel-slide-to'), + el: indicatorEl + }); + }); + } + + var carousel = new Carousel(items, { + defaultPosition: defaultPosition, + indicators: { + items: indicators + }, + interval: interval ? interval : carousel_Default.interval + }); + + if (slide) { + carousel.cycle(); + } // check for controls + + + var carouselNextEl = carouselEl.querySelector('[data-carousel-next]'); + var carouselPrevEl = carouselEl.querySelector('[data-carousel-prev]'); + + if (carouselNextEl) { + carouselNextEl.addEventListener('click', function () { + carousel.next(); + }); + } + + if (carouselPrevEl) { + carouselPrevEl.addEventListener('click', function () { + carousel.prev(); + }); + } + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initCarousel(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initCarousel); +} + +/* harmony default export */ const carousel = (Carousel); +;// CONCATENATED MODULE: ./src/components/dismiss.js +function dismiss_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function dismiss_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? dismiss_ownKeys(Object(source), !0).forEach(function (key) { dismiss_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : dismiss_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function dismiss_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function dismiss_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function dismiss_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function dismiss_createClass(Constructor, protoProps, staticProps) { if (protoProps) dismiss_defineProperties(Constructor.prototype, protoProps); if (staticProps) dismiss_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var dismiss_Default = { + triggerEl: null, + transition: 'transition-opacity', + duration: 300, + timing: 'ease-out', + onHide: function onHide() {} +}; + +var Dismiss = /*#__PURE__*/function () { + function Dismiss() { + var targetEl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + dismiss_classCallCheck(this, Dismiss); + + this._targetEl = targetEl; + this._triggerEl = options ? options.triggerEl : dismiss_Default.triggerEl; + this._options = dismiss_objectSpread(dismiss_objectSpread({}, dismiss_Default), options); + + this._init(); + } + + dismiss_createClass(Dismiss, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._triggerEl) { + this._triggerEl.addEventListener('click', function () { + _this.hide(); + }); + } + } + }, { + key: "hide", + value: function hide() { + var _this2 = this; + + this._targetEl.classList.add(this._options.transition, "duration-".concat(this._options.duration), this._options.timing, 'opacity-0'); + + setTimeout(function () { + _this2._targetEl.classList.add('hidden'); + }, this._options.duration); // callback function + + this._options.onHide(this, this._targetEl); + } + }]); + + return Dismiss; +}(); + +window.Dismiss = Dismiss; + +function initDismiss() { + document.querySelectorAll('[data-dismiss-target]').forEach(function (triggerEl) { + var targetEl = document.querySelector(triggerEl.getAttribute('data-dismiss-target')); + new Dismiss(targetEl, { + triggerEl: triggerEl + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initDismiss(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initDismiss); +} + +/* harmony default export */ const dismiss = (Dismiss); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getWindow.js +function getWindow(node) { + if (node == null) { + return window; + } + + if (node.toString() !== '[object Window]') { + var ownerDocument = node.ownerDocument; + return ownerDocument ? ownerDocument.defaultView || window : window; + } + + return node; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js + + +function isElement(node) { + var OwnElement = getWindow(node).Element; + return node instanceof OwnElement || node instanceof Element; +} + +function isHTMLElement(node) { + var OwnElement = getWindow(node).HTMLElement; + return node instanceof OwnElement || node instanceof HTMLElement; +} + +function isShadowRoot(node) { + // IE 11 has no ShadowRoot + if (typeof ShadowRoot === 'undefined') { + return false; + } + + var OwnElement = getWindow(node).ShadowRoot; + return node instanceof OwnElement || node instanceof ShadowRoot; +} + + +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/math.js +var math_max = Math.max; +var math_min = Math.min; +var round = Math.round; +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js + + +function getBoundingClientRect(element, includeScale) { + if (includeScale === void 0) { + includeScale = false; + } + + var rect = element.getBoundingClientRect(); + var scaleX = 1; + var scaleY = 1; + + if (isHTMLElement(element) && includeScale) { + var offsetHeight = element.offsetHeight; + var offsetWidth = element.offsetWidth; // Do not attempt to divide by 0, otherwise we get `Infinity` as scale + // Fallback to 1 in case both values are `0` + + if (offsetWidth > 0) { + scaleX = round(rect.width) / offsetWidth || 1; + } + + if (offsetHeight > 0) { + scaleY = round(rect.height) / offsetHeight || 1; + } + } + + return { + width: rect.width / scaleX, + height: rect.height / scaleY, + top: rect.top / scaleY, + right: rect.right / scaleX, + bottom: rect.bottom / scaleY, + left: rect.left / scaleX, + x: rect.left / scaleX, + y: rect.top / scaleY + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js + +function getWindowScroll(node) { + var win = getWindow(node); + var scrollLeft = win.pageXOffset; + var scrollTop = win.pageYOffset; + return { + scrollLeft: scrollLeft, + scrollTop: scrollTop + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js +function getHTMLElementScroll(element) { + return { + scrollLeft: element.scrollLeft, + scrollTop: element.scrollTop + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js + + + + +function getNodeScroll(node) { + if (node === getWindow(node) || !isHTMLElement(node)) { + return getWindowScroll(node); + } else { + return getHTMLElementScroll(node); + } +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js +function getNodeName(element) { + return element ? (element.nodeName || '').toLowerCase() : null; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js + +function getDocumentElement(element) { + // $FlowFixMe[incompatible-return]: assume body is always available + return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing] + element.document) || window.document).documentElement; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js + + + +function getWindowScrollBarX(element) { + // If has a CSS width greater than the viewport, then this will be + // incorrect for RTL. + // Popper 1 is broken in this case and never had a bug report so let's assume + // it's not an issue. I don't think anyone ever specifies width on + // anyway. + // Browsers where the left scrollbar doesn't cause an issue report `0` for + // this (e.g. Edge 2019, IE11, Safari) + return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js + +function getComputedStyle(element) { + return getWindow(element).getComputedStyle(element); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js + +function isScrollParent(element) { + // Firefox wants us to check `-x` and `-y` variations as well + var _getComputedStyle = getComputedStyle(element), + overflow = _getComputedStyle.overflow, + overflowX = _getComputedStyle.overflowX, + overflowY = _getComputedStyle.overflowY; + + return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js + + + + + + + + + +function isElementScaled(element) { + var rect = element.getBoundingClientRect(); + var scaleX = round(rect.width) / element.offsetWidth || 1; + var scaleY = round(rect.height) / element.offsetHeight || 1; + return scaleX !== 1 || scaleY !== 1; +} // Returns the composite rect of an element relative to its offsetParent. +// Composite means it takes into account transforms as well as layout. + + +function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) { + if (isFixed === void 0) { + isFixed = false; + } + + var isOffsetParentAnElement = isHTMLElement(offsetParent); + var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent); + var documentElement = getDocumentElement(offsetParent); + var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled); + var scroll = { + scrollLeft: 0, + scrollTop: 0 + }; + var offsets = { + x: 0, + y: 0 + }; + + if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) { + if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078 + isScrollParent(documentElement)) { + scroll = getNodeScroll(offsetParent); + } + + if (isHTMLElement(offsetParent)) { + offsets = getBoundingClientRect(offsetParent, true); + offsets.x += offsetParent.clientLeft; + offsets.y += offsetParent.clientTop; + } else if (documentElement) { + offsets.x = getWindowScrollBarX(documentElement); + } + } + + return { + x: rect.left + scroll.scrollLeft - offsets.x, + y: rect.top + scroll.scrollTop - offsets.y, + width: rect.width, + height: rect.height + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js + // Returns the layout rect of an element relative to its offsetParent. Layout +// means it doesn't take into account transforms. + +function getLayoutRect(element) { + var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed. + // Fixes https://github.com/popperjs/popper-core/issues/1223 + + var width = element.offsetWidth; + var height = element.offsetHeight; + + if (Math.abs(clientRect.width - width) <= 1) { + width = clientRect.width; + } + + if (Math.abs(clientRect.height - height) <= 1) { + height = clientRect.height; + } + + return { + x: element.offsetLeft, + y: element.offsetTop, + width: width, + height: height + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js + + + +function getParentNode(element) { + if (getNodeName(element) === 'html') { + return element; + } + + return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle + // $FlowFixMe[incompatible-return] + // $FlowFixMe[prop-missing] + element.assignedSlot || // step into the shadow DOM of the parent of a slotted node + element.parentNode || ( // DOM Element detected + isShadowRoot(element) ? element.host : null) || // ShadowRoot detected + // $FlowFixMe[incompatible-call]: HTMLElement is a Node + getDocumentElement(element) // fallback + + ); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js + + + + +function getScrollParent(node) { + if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) { + // $FlowFixMe[incompatible-return]: assume body is always available + return node.ownerDocument.body; + } + + if (isHTMLElement(node) && isScrollParent(node)) { + return node; + } + + return getScrollParent(getParentNode(node)); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js + + + + +/* +given a DOM element, return the list of all scroll parents, up the list of ancesors +until we get to the top window object. This list is what we attach scroll listeners +to, because if any of these parent elements scroll, we'll need to re-calculate the +reference element's position. +*/ + +function listScrollParents(element, list) { + var _element$ownerDocumen; + + if (list === void 0) { + list = []; + } + + var scrollParent = getScrollParent(element); + var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body); + var win = getWindow(scrollParent); + var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent; + var updatedList = list.concat(target); + return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here + updatedList.concat(listScrollParents(getParentNode(target))); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js + +function isTableElement(element) { + return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js + + + + + + + +function getTrueOffsetParent(element) { + if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837 + getComputedStyle(element).position === 'fixed') { + return null; + } + + return element.offsetParent; +} // `.offsetParent` reports `null` for fixed elements, while absolute elements +// return the containing block + + +function getContainingBlock(element) { + var isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') !== -1; + var isIE = navigator.userAgent.indexOf('Trident') !== -1; + + if (isIE && isHTMLElement(element)) { + // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport + var elementCss = getComputedStyle(element); + + if (elementCss.position === 'fixed') { + return null; + } + } + + var currentNode = getParentNode(element); + + while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) { + var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that + // create a containing block. + // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block + + if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') { + return currentNode; + } else { + currentNode = currentNode.parentNode; + } + } + + return null; +} // Gets the closest ancestor positioned element. Handles some edge cases, +// such as table ancestors and cross browser bugs. + + +function getOffsetParent(element) { + var window = getWindow(element); + var offsetParent = getTrueOffsetParent(element); + + while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') { + offsetParent = getTrueOffsetParent(offsetParent); + } + + if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) { + return window; + } + + return offsetParent || getContainingBlock(element) || window; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/enums.js +var enums_top = 'top'; +var bottom = 'bottom'; +var right = 'right'; +var left = 'left'; +var auto = 'auto'; +var basePlacements = [enums_top, bottom, right, left]; +var start = 'start'; +var end = 'end'; +var clippingParents = 'clippingParents'; +var viewport = 'viewport'; +var popper = 'popper'; +var reference = 'reference'; +var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) { + return acc.concat([placement + "-" + start, placement + "-" + end]); +}, []); +var enums_placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) { + return acc.concat([placement, placement + "-" + start, placement + "-" + end]); +}, []); // modifiers that need to read the DOM + +var beforeRead = 'beforeRead'; +var read = 'read'; +var afterRead = 'afterRead'; // pure-logic modifiers + +var beforeMain = 'beforeMain'; +var main = 'main'; +var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state) + +var beforeWrite = 'beforeWrite'; +var write = 'write'; +var afterWrite = 'afterWrite'; +var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite]; +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/orderModifiers.js + // source: https://stackoverflow.com/questions/49875255 + +function order(modifiers) { + var map = new Map(); + var visited = new Set(); + var result = []; + modifiers.forEach(function (modifier) { + map.set(modifier.name, modifier); + }); // On visiting object, check for its dependencies and visit them recursively + + function sort(modifier) { + visited.add(modifier.name); + var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []); + requires.forEach(function (dep) { + if (!visited.has(dep)) { + var depModifier = map.get(dep); + + if (depModifier) { + sort(depModifier); + } + } + }); + result.push(modifier); + } + + modifiers.forEach(function (modifier) { + if (!visited.has(modifier.name)) { + // check for visited object + sort(modifier); + } + }); + return result; +} + +function orderModifiers(modifiers) { + // order based on dependencies + var orderedModifiers = order(modifiers); // order based on phase + + return modifierPhases.reduce(function (acc, phase) { + return acc.concat(orderedModifiers.filter(function (modifier) { + return modifier.phase === phase; + })); + }, []); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/debounce.js +function debounce(fn) { + var pending; + return function () { + if (!pending) { + pending = new Promise(function (resolve) { + Promise.resolve().then(function () { + pending = undefined; + resolve(fn()); + }); + }); + } + + return pending; + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/mergeByName.js +function mergeByName(modifiers) { + var merged = modifiers.reduce(function (merged, current) { + var existing = merged[current.name]; + merged[current.name] = existing ? Object.assign({}, existing, current, { + options: Object.assign({}, existing.options, current.options), + data: Object.assign({}, existing.data, current.data) + }) : current; + return merged; + }, {}); // IE11 does not support Object.values + + return Object.keys(merged).map(function (key) { + return merged[key]; + }); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/createPopper.js + + + + + + + + + + + + + + +var INVALID_ELEMENT_ERROR = 'Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.'; +var INFINITE_LOOP_ERROR = 'Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.'; +var DEFAULT_OPTIONS = { + placement: 'bottom', + modifiers: [], + strategy: 'absolute' +}; + +function areValidElements() { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } + + return !args.some(function (element) { + return !(element && typeof element.getBoundingClientRect === 'function'); + }); +} + +function popperGenerator(generatorOptions) { + if (generatorOptions === void 0) { + generatorOptions = {}; + } + + var _generatorOptions = generatorOptions, + _generatorOptions$def = _generatorOptions.defaultModifiers, + defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def, + _generatorOptions$def2 = _generatorOptions.defaultOptions, + defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2; + return function createPopper(reference, popper, options) { + if (options === void 0) { + options = defaultOptions; + } + + var state = { + placement: 'bottom', + orderedModifiers: [], + options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions), + modifiersData: {}, + elements: { + reference: reference, + popper: popper + }, + attributes: {}, + styles: {} + }; + var effectCleanupFns = []; + var isDestroyed = false; + var instance = { + state: state, + setOptions: function setOptions(setOptionsAction) { + var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction; + cleanupModifierEffects(); + state.options = Object.assign({}, defaultOptions, state.options, options); + state.scrollParents = { + reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [], + popper: listScrollParents(popper) + }; // Orders the modifiers based on their dependencies and `phase` + // properties + + var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers + + state.orderedModifiers = orderedModifiers.filter(function (m) { + return m.enabled; + }); // Validate the provided modifiers so that the consumer will get warned + // if one of the modifiers is invalid for any reason + + if (false) { var _getComputedStyle, marginTop, marginRight, marginBottom, marginLeft, flipModifier, modifiers; } + + runModifierEffects(); + return instance.update(); + }, + // Sync update – it will always be executed, even if not necessary. This + // is useful for low frequency updates where sync behavior simplifies the + // logic. + // For high frequency updates (e.g. `resize` and `scroll` events), always + // prefer the async Popper#update method + forceUpdate: function forceUpdate() { + if (isDestroyed) { + return; + } + + var _state$elements = state.elements, + reference = _state$elements.reference, + popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements + // anymore + + if (!areValidElements(reference, popper)) { + if (false) {} + + return; + } // Store the reference and popper rects to be read by modifiers + + + state.rects = { + reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'), + popper: getLayoutRect(popper) + }; // Modifiers have the ability to reset the current update cycle. The + // most common use case for this is the `flip` modifier changing the + // placement, which then needs to re-run all the modifiers, because the + // logic was previously ran for the previous placement and is therefore + // stale/incorrect + + state.reset = false; + state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier + // is filled with the initial data specified by the modifier. This means + // it doesn't persist and is fresh on each update. + // To ensure persistent data, use `${name}#persistent` + + state.orderedModifiers.forEach(function (modifier) { + return state.modifiersData[modifier.name] = Object.assign({}, modifier.data); + }); + var __debug_loops__ = 0; + + for (var index = 0; index < state.orderedModifiers.length; index++) { + if (false) {} + + if (state.reset === true) { + state.reset = false; + index = -1; + continue; + } + + var _state$orderedModifie = state.orderedModifiers[index], + fn = _state$orderedModifie.fn, + _state$orderedModifie2 = _state$orderedModifie.options, + _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2, + name = _state$orderedModifie.name; + + if (typeof fn === 'function') { + state = fn({ + state: state, + options: _options, + name: name, + instance: instance + }) || state; + } + } + }, + // Async and optimistically optimized update – it will not be executed if + // not necessary (debounced to run at most once-per-tick) + update: debounce(function () { + return new Promise(function (resolve) { + instance.forceUpdate(); + resolve(state); + }); + }), + destroy: function destroy() { + cleanupModifierEffects(); + isDestroyed = true; + } + }; + + if (!areValidElements(reference, popper)) { + if (false) {} + + return instance; + } + + instance.setOptions(options).then(function (state) { + if (!isDestroyed && options.onFirstUpdate) { + options.onFirstUpdate(state); + } + }); // Modifiers have the ability to execute arbitrary code before the first + // update cycle runs. They will be executed in the same order as the update + // cycle. This is useful when a modifier adds some persistent data that + // other modifiers need to use, but the modifier is run after the dependent + // one. + + function runModifierEffects() { + state.orderedModifiers.forEach(function (_ref3) { + var name = _ref3.name, + _ref3$options = _ref3.options, + options = _ref3$options === void 0 ? {} : _ref3$options, + effect = _ref3.effect; + + if (typeof effect === 'function') { + var cleanupFn = effect({ + state: state, + name: name, + instance: instance, + options: options + }); + + var noopFn = function noopFn() {}; + + effectCleanupFns.push(cleanupFn || noopFn); + } + }); + } + + function cleanupModifierEffects() { + effectCleanupFns.forEach(function (fn) { + return fn(); + }); + effectCleanupFns = []; + } + + return instance; + }; +} +var createPopper = /*#__PURE__*/(/* unused pure expression or super */ null && (popperGenerator())); // eslint-disable-next-line import/no-unused-modules + + +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/eventListeners.js + // eslint-disable-next-line import/no-unused-modules + +var passive = { + passive: true +}; + +function effect(_ref) { + var state = _ref.state, + instance = _ref.instance, + options = _ref.options; + var _options$scroll = options.scroll, + scroll = _options$scroll === void 0 ? true : _options$scroll, + _options$resize = options.resize, + resize = _options$resize === void 0 ? true : _options$resize; + var window = getWindow(state.elements.popper); + var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper); + + if (scroll) { + scrollParents.forEach(function (scrollParent) { + scrollParent.addEventListener('scroll', instance.update, passive); + }); + } + + if (resize) { + window.addEventListener('resize', instance.update, passive); + } + + return function () { + if (scroll) { + scrollParents.forEach(function (scrollParent) { + scrollParent.removeEventListener('scroll', instance.update, passive); + }); + } + + if (resize) { + window.removeEventListener('resize', instance.update, passive); + } + }; +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const eventListeners = ({ + name: 'eventListeners', + enabled: true, + phase: 'write', + fn: function fn() {}, + effect: effect, + data: {} +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getBasePlacement.js + +function getBasePlacement(placement) { + return placement.split('-')[0]; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getVariation.js +function getVariation(placement) { + return placement.split('-')[1]; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js +function getMainAxisFromPlacement(placement) { + return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y'; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/computeOffsets.js + + + + +function computeOffsets(_ref) { + var reference = _ref.reference, + element = _ref.element, + placement = _ref.placement; + var basePlacement = placement ? getBasePlacement(placement) : null; + var variation = placement ? getVariation(placement) : null; + var commonX = reference.x + reference.width / 2 - element.width / 2; + var commonY = reference.y + reference.height / 2 - element.height / 2; + var offsets; + + switch (basePlacement) { + case enums_top: + offsets = { + x: commonX, + y: reference.y - element.height + }; + break; + + case bottom: + offsets = { + x: commonX, + y: reference.y + reference.height + }; + break; + + case right: + offsets = { + x: reference.x + reference.width, + y: commonY + }; + break; + + case left: + offsets = { + x: reference.x - element.width, + y: commonY + }; + break; + + default: + offsets = { + x: reference.x, + y: reference.y + }; + } + + var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null; + + if (mainAxis != null) { + var len = mainAxis === 'y' ? 'height' : 'width'; + + switch (variation) { + case start: + offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2); + break; + + case end: + offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2); + break; + + default: + } + } + + return offsets; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js + + +function popperOffsets(_ref) { + var state = _ref.state, + name = _ref.name; + // Offsets are the actual position the popper needs to have to be + // properly positioned near its reference element + // This is the most basic placement, and will be adjusted by + // the modifiers in the next step + state.modifiersData[name] = computeOffsets({ + reference: state.rects.reference, + element: state.rects.popper, + strategy: 'absolute', + placement: state.placement + }); +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_popperOffsets = ({ + name: 'popperOffsets', + enabled: true, + phase: 'read', + fn: popperOffsets, + data: {} +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/computeStyles.js + + + + + + + + // eslint-disable-next-line import/no-unused-modules + +var unsetSides = { + top: 'auto', + right: 'auto', + bottom: 'auto', + left: 'auto' +}; // Round the offsets to the nearest suitable subpixel based on the DPR. +// Zooming can change the DPR, but it seems to report a value that will +// cleanly divide the values into the appropriate subpixels. + +function roundOffsetsByDPR(_ref) { + var x = _ref.x, + y = _ref.y; + var win = window; + var dpr = win.devicePixelRatio || 1; + return { + x: round(x * dpr) / dpr || 0, + y: round(y * dpr) / dpr || 0 + }; +} + +function mapToStyles(_ref2) { + var _Object$assign2; + + var popper = _ref2.popper, + popperRect = _ref2.popperRect, + placement = _ref2.placement, + variation = _ref2.variation, + offsets = _ref2.offsets, + position = _ref2.position, + gpuAcceleration = _ref2.gpuAcceleration, + adaptive = _ref2.adaptive, + roundOffsets = _ref2.roundOffsets, + isFixed = _ref2.isFixed; + var _offsets$x = offsets.x, + x = _offsets$x === void 0 ? 0 : _offsets$x, + _offsets$y = offsets.y, + y = _offsets$y === void 0 ? 0 : _offsets$y; + + var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({ + x: x, + y: y + }) : { + x: x, + y: y + }; + + x = _ref3.x; + y = _ref3.y; + var hasX = offsets.hasOwnProperty('x'); + var hasY = offsets.hasOwnProperty('y'); + var sideX = left; + var sideY = enums_top; + var win = window; + + if (adaptive) { + var offsetParent = getOffsetParent(popper); + var heightProp = 'clientHeight'; + var widthProp = 'clientWidth'; + + if (offsetParent === getWindow(popper)) { + offsetParent = getDocumentElement(popper); + + if (getComputedStyle(offsetParent).position !== 'static' && position === 'absolute') { + heightProp = 'scrollHeight'; + widthProp = 'scrollWidth'; + } + } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it + + + offsetParent = offsetParent; + + if (placement === enums_top || (placement === left || placement === right) && variation === end) { + sideY = bottom; + var offsetY = isFixed && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing] + offsetParent[heightProp]; + y -= offsetY - popperRect.height; + y *= gpuAcceleration ? 1 : -1; + } + + if (placement === left || (placement === enums_top || placement === bottom) && variation === end) { + sideX = right; + var offsetX = isFixed && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing] + offsetParent[widthProp]; + x -= offsetX - popperRect.width; + x *= gpuAcceleration ? 1 : -1; + } + } + + var commonStyles = Object.assign({ + position: position + }, adaptive && unsetSides); + + var _ref4 = roundOffsets === true ? roundOffsetsByDPR({ + x: x, + y: y + }) : { + x: x, + y: y + }; + + x = _ref4.x; + y = _ref4.y; + + if (gpuAcceleration) { + var _Object$assign; + + return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y + "px)" : "translate3d(" + x + "px, " + y + "px, 0)", _Object$assign)); + } + + return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + "px" : '', _Object$assign2[sideX] = hasX ? x + "px" : '', _Object$assign2.transform = '', _Object$assign2)); +} + +function computeStyles(_ref5) { + var state = _ref5.state, + options = _ref5.options; + var _options$gpuAccelerat = options.gpuAcceleration, + gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat, + _options$adaptive = options.adaptive, + adaptive = _options$adaptive === void 0 ? true : _options$adaptive, + _options$roundOffsets = options.roundOffsets, + roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets; + + if (false) { var transitionProperty; } + + var commonStyles = { + placement: getBasePlacement(state.placement), + variation: getVariation(state.placement), + popper: state.elements.popper, + popperRect: state.rects.popper, + gpuAcceleration: gpuAcceleration, + isFixed: state.options.strategy === 'fixed' + }; + + if (state.modifiersData.popperOffsets != null) { + state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, { + offsets: state.modifiersData.popperOffsets, + position: state.options.strategy, + adaptive: adaptive, + roundOffsets: roundOffsets + }))); + } + + if (state.modifiersData.arrow != null) { + state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, { + offsets: state.modifiersData.arrow, + position: 'absolute', + adaptive: false, + roundOffsets: roundOffsets + }))); + } + + state.attributes.popper = Object.assign({}, state.attributes.popper, { + 'data-popper-placement': state.placement + }); +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_computeStyles = ({ + name: 'computeStyles', + enabled: true, + phase: 'beforeWrite', + fn: computeStyles, + data: {} +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/applyStyles.js + + // This modifier takes the styles prepared by the `computeStyles` modifier +// and applies them to the HTMLElements such as popper and arrow + +function applyStyles(_ref) { + var state = _ref.state; + Object.keys(state.elements).forEach(function (name) { + var style = state.styles[name] || {}; + var attributes = state.attributes[name] || {}; + var element = state.elements[name]; // arrow is optional + virtual elements + + if (!isHTMLElement(element) || !getNodeName(element)) { + return; + } // Flow doesn't support to extend this property, but it's the most + // effective way to apply styles to an HTMLElement + // $FlowFixMe[cannot-write] + + + Object.assign(element.style, style); + Object.keys(attributes).forEach(function (name) { + var value = attributes[name]; + + if (value === false) { + element.removeAttribute(name); + } else { + element.setAttribute(name, value === true ? '' : value); + } + }); + }); +} + +function applyStyles_effect(_ref2) { + var state = _ref2.state; + var initialStyles = { + popper: { + position: state.options.strategy, + left: '0', + top: '0', + margin: '0' + }, + arrow: { + position: 'absolute' + }, + reference: {} + }; + Object.assign(state.elements.popper.style, initialStyles.popper); + state.styles = initialStyles; + + if (state.elements.arrow) { + Object.assign(state.elements.arrow.style, initialStyles.arrow); + } + + return function () { + Object.keys(state.elements).forEach(function (name) { + var element = state.elements[name]; + var attributes = state.attributes[name] || {}; + var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them + + var style = styleProperties.reduce(function (style, property) { + style[property] = ''; + return style; + }, {}); // arrow is optional + virtual elements + + if (!isHTMLElement(element) || !getNodeName(element)) { + return; + } + + Object.assign(element.style, style); + Object.keys(attributes).forEach(function (attribute) { + element.removeAttribute(attribute); + }); + }); + }; +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_applyStyles = ({ + name: 'applyStyles', + enabled: true, + phase: 'write', + fn: applyStyles, + effect: applyStyles_effect, + requires: ['computeStyles'] +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/offset.js + + // eslint-disable-next-line import/no-unused-modules + +function distanceAndSkiddingToXY(placement, rects, offset) { + var basePlacement = getBasePlacement(placement); + var invertDistance = [left, enums_top].indexOf(basePlacement) >= 0 ? -1 : 1; + + var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, { + placement: placement + })) : offset, + skidding = _ref[0], + distance = _ref[1]; + + skidding = skidding || 0; + distance = (distance || 0) * invertDistance; + return [left, right].indexOf(basePlacement) >= 0 ? { + x: distance, + y: skidding + } : { + x: skidding, + y: distance + }; +} + +function offset(_ref2) { + var state = _ref2.state, + options = _ref2.options, + name = _ref2.name; + var _options$offset = options.offset, + offset = _options$offset === void 0 ? [0, 0] : _options$offset; + var data = enums_placements.reduce(function (acc, placement) { + acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset); + return acc; + }, {}); + var _data$state$placement = data[state.placement], + x = _data$state$placement.x, + y = _data$state$placement.y; + + if (state.modifiersData.popperOffsets != null) { + state.modifiersData.popperOffsets.x += x; + state.modifiersData.popperOffsets.y += y; + } + + state.modifiersData[name] = data; +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_offset = ({ + name: 'offset', + enabled: true, + phase: 'main', + requires: ['popperOffsets'], + fn: offset +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js +var hash = { + left: 'right', + right: 'left', + bottom: 'top', + top: 'bottom' +}; +function getOppositePlacement(placement) { + return placement.replace(/left|right|bottom|top/g, function (matched) { + return hash[matched]; + }); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js +var getOppositeVariationPlacement_hash = { + start: 'end', + end: 'start' +}; +function getOppositeVariationPlacement(placement) { + return placement.replace(/start|end/g, function (matched) { + return getOppositeVariationPlacement_hash[matched]; + }); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js + + + +function getViewportRect(element) { + var win = getWindow(element); + var html = getDocumentElement(element); + var visualViewport = win.visualViewport; + var width = html.clientWidth; + var height = html.clientHeight; + var x = 0; + var y = 0; // NB: This isn't supported on iOS <= 12. If the keyboard is open, the popper + // can be obscured underneath it. + // Also, `html.clientHeight` adds the bottom bar height in Safari iOS, even + // if it isn't open, so if this isn't available, the popper will be detected + // to overflow the bottom of the screen too early. + + if (visualViewport) { + width = visualViewport.width; + height = visualViewport.height; // Uses Layout Viewport (like Chrome; Safari does not currently) + // In Chrome, it returns a value very close to 0 (+/-) but contains rounding + // errors due to floating point numbers, so we need to check precision. + // Safari returns a number <= 0, usually < -1 when pinch-zoomed + // Feature detection fails in mobile emulation mode in Chrome. + // Math.abs(win.innerWidth / visualViewport.scale - visualViewport.width) < + // 0.001 + // Fallback here: "Not Safari" userAgent + + if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) { + x = visualViewport.offsetLeft; + y = visualViewport.offsetTop; + } + } + + return { + width: width, + height: height, + x: x + getWindowScrollBarX(element), + y: y + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js + + + + + // Gets the entire size of the scrollable document area, even extending outside +// of the `` and `` rect bounds if horizontally scrollable + +function getDocumentRect(element) { + var _element$ownerDocumen; + + var html = getDocumentElement(element); + var winScroll = getWindowScroll(element); + var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body; + var width = math_max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0); + var height = math_max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0); + var x = -winScroll.scrollLeft + getWindowScrollBarX(element); + var y = -winScroll.scrollTop; + + if (getComputedStyle(body || html).direction === 'rtl') { + x += math_max(html.clientWidth, body ? body.clientWidth : 0) - width; + } + + return { + width: width, + height: height, + x: x, + y: y + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/contains.js + +function contains(parent, child) { + var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method + + if (parent.contains(child)) { + return true; + } // then fallback to custom implementation with Shadow DOM support + else if (rootNode && isShadowRoot(rootNode)) { + var next = child; + + do { + if (next && parent.isSameNode(next)) { + return true; + } // $FlowFixMe[prop-missing]: need a better way to handle this... + + + next = next.parentNode || next.host; + } while (next); + } // Give up, the result is false + + + return false; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/rectToClientRect.js +function rectToClientRect(rect) { + return Object.assign({}, rect, { + left: rect.x, + top: rect.y, + right: rect.x + rect.width, + bottom: rect.y + rect.height + }); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js + + + + + + + + + + + + + + + +function getInnerBoundingClientRect(element) { + var rect = getBoundingClientRect(element); + rect.top = rect.top + element.clientTop; + rect.left = rect.left + element.clientLeft; + rect.bottom = rect.top + element.clientHeight; + rect.right = rect.left + element.clientWidth; + rect.width = element.clientWidth; + rect.height = element.clientHeight; + rect.x = rect.left; + rect.y = rect.top; + return rect; +} + +function getClientRectFromMixedType(element, clippingParent) { + return clippingParent === viewport ? rectToClientRect(getViewportRect(element)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent) : rectToClientRect(getDocumentRect(getDocumentElement(element))); +} // A "clipping parent" is an overflowable container with the characteristic of +// clipping (or hiding) overflowing elements with a position different from +// `initial` + + +function getClippingParents(element) { + var clippingParents = listScrollParents(getParentNode(element)); + var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle(element).position) >= 0; + var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element; + + if (!isElement(clipperElement)) { + return []; + } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414 + + + return clippingParents.filter(function (clippingParent) { + return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body'; + }); +} // Gets the maximum area that the element is visible in due to any number of +// clipping parents + + +function getClippingRect(element, boundary, rootBoundary) { + var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary); + var clippingParents = [].concat(mainClippingParents, [rootBoundary]); + var firstClippingParent = clippingParents[0]; + var clippingRect = clippingParents.reduce(function (accRect, clippingParent) { + var rect = getClientRectFromMixedType(element, clippingParent); + accRect.top = math_max(rect.top, accRect.top); + accRect.right = math_min(rect.right, accRect.right); + accRect.bottom = math_min(rect.bottom, accRect.bottom); + accRect.left = math_max(rect.left, accRect.left); + return accRect; + }, getClientRectFromMixedType(element, firstClippingParent)); + clippingRect.width = clippingRect.right - clippingRect.left; + clippingRect.height = clippingRect.bottom - clippingRect.top; + clippingRect.x = clippingRect.left; + clippingRect.y = clippingRect.top; + return clippingRect; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js +function getFreshSideObject() { + return { + top: 0, + right: 0, + bottom: 0, + left: 0 + }; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js + +function mergePaddingObject(paddingObject) { + return Object.assign({}, getFreshSideObject(), paddingObject); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/expandToHashMap.js +function expandToHashMap(value, keys) { + return keys.reduce(function (hashMap, key) { + hashMap[key] = value; + return hashMap; + }, {}); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/detectOverflow.js + + + + + + + + + // eslint-disable-next-line import/no-unused-modules + +function detectOverflow(state, options) { + if (options === void 0) { + options = {}; + } + + var _options = options, + _options$placement = _options.placement, + placement = _options$placement === void 0 ? state.placement : _options$placement, + _options$boundary = _options.boundary, + boundary = _options$boundary === void 0 ? clippingParents : _options$boundary, + _options$rootBoundary = _options.rootBoundary, + rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary, + _options$elementConte = _options.elementContext, + elementContext = _options$elementConte === void 0 ? popper : _options$elementConte, + _options$altBoundary = _options.altBoundary, + altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary, + _options$padding = _options.padding, + padding = _options$padding === void 0 ? 0 : _options$padding; + var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements)); + var altContext = elementContext === popper ? reference : popper; + var popperRect = state.rects.popper; + var element = state.elements[altBoundary ? altContext : elementContext]; + var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary); + var referenceClientRect = getBoundingClientRect(state.elements.reference); + var popperOffsets = computeOffsets({ + reference: referenceClientRect, + element: popperRect, + strategy: 'absolute', + placement: placement + }); + var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets)); + var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect + // 0 or negative = within the clipping rect + + var overflowOffsets = { + top: clippingClientRect.top - elementClientRect.top + paddingObject.top, + bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom, + left: clippingClientRect.left - elementClientRect.left + paddingObject.left, + right: elementClientRect.right - clippingClientRect.right + paddingObject.right + }; + var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element + + if (elementContext === popper && offsetData) { + var offset = offsetData[placement]; + Object.keys(overflowOffsets).forEach(function (key) { + var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1; + var axis = [enums_top, bottom].indexOf(key) >= 0 ? 'y' : 'x'; + overflowOffsets[key] += offset[axis] * multiply; + }); + } + + return overflowOffsets; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js + + + + +function computeAutoPlacement(state, options) { + if (options === void 0) { + options = {}; + } + + var _options = options, + placement = _options.placement, + boundary = _options.boundary, + rootBoundary = _options.rootBoundary, + padding = _options.padding, + flipVariations = _options.flipVariations, + _options$allowedAutoP = _options.allowedAutoPlacements, + allowedAutoPlacements = _options$allowedAutoP === void 0 ? enums_placements : _options$allowedAutoP; + var variation = getVariation(placement); + var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) { + return getVariation(placement) === variation; + }) : basePlacements; + var allowedPlacements = placements.filter(function (placement) { + return allowedAutoPlacements.indexOf(placement) >= 0; + }); + + if (allowedPlacements.length === 0) { + allowedPlacements = placements; + + if (false) {} + } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions... + + + var overflows = allowedPlacements.reduce(function (acc, placement) { + acc[placement] = detectOverflow(state, { + placement: placement, + boundary: boundary, + rootBoundary: rootBoundary, + padding: padding + })[getBasePlacement(placement)]; + return acc; + }, {}); + return Object.keys(overflows).sort(function (a, b) { + return overflows[a] - overflows[b]; + }); +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/flip.js + + + + + + + // eslint-disable-next-line import/no-unused-modules + +function getExpandedFallbackPlacements(placement) { + if (getBasePlacement(placement) === auto) { + return []; + } + + var oppositePlacement = getOppositePlacement(placement); + return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)]; +} + +function flip(_ref) { + var state = _ref.state, + options = _ref.options, + name = _ref.name; + + if (state.modifiersData[name]._skip) { + return; + } + + var _options$mainAxis = options.mainAxis, + checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, + _options$altAxis = options.altAxis, + checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis, + specifiedFallbackPlacements = options.fallbackPlacements, + padding = options.padding, + boundary = options.boundary, + rootBoundary = options.rootBoundary, + altBoundary = options.altBoundary, + _options$flipVariatio = options.flipVariations, + flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio, + allowedAutoPlacements = options.allowedAutoPlacements; + var preferredPlacement = state.options.placement; + var basePlacement = getBasePlacement(preferredPlacement); + var isBasePlacement = basePlacement === preferredPlacement; + var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement)); + var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) { + return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, { + placement: placement, + boundary: boundary, + rootBoundary: rootBoundary, + padding: padding, + flipVariations: flipVariations, + allowedAutoPlacements: allowedAutoPlacements + }) : placement); + }, []); + var referenceRect = state.rects.reference; + var popperRect = state.rects.popper; + var checksMap = new Map(); + var makeFallbackChecks = true; + var firstFittingPlacement = placements[0]; + + for (var i = 0; i < placements.length; i++) { + var placement = placements[i]; + + var _basePlacement = getBasePlacement(placement); + + var isStartVariation = getVariation(placement) === start; + var isVertical = [enums_top, bottom].indexOf(_basePlacement) >= 0; + var len = isVertical ? 'width' : 'height'; + var overflow = detectOverflow(state, { + placement: placement, + boundary: boundary, + rootBoundary: rootBoundary, + altBoundary: altBoundary, + padding: padding + }); + var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : enums_top; + + if (referenceRect[len] > popperRect[len]) { + mainVariationSide = getOppositePlacement(mainVariationSide); + } + + var altVariationSide = getOppositePlacement(mainVariationSide); + var checks = []; + + if (checkMainAxis) { + checks.push(overflow[_basePlacement] <= 0); + } + + if (checkAltAxis) { + checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0); + } + + if (checks.every(function (check) { + return check; + })) { + firstFittingPlacement = placement; + makeFallbackChecks = false; + break; + } + + checksMap.set(placement, checks); + } + + if (makeFallbackChecks) { + // `2` may be desired in some cases – research later + var numberOfChecks = flipVariations ? 3 : 1; + + var _loop = function _loop(_i) { + var fittingPlacement = placements.find(function (placement) { + var checks = checksMap.get(placement); + + if (checks) { + return checks.slice(0, _i).every(function (check) { + return check; + }); + } + }); + + if (fittingPlacement) { + firstFittingPlacement = fittingPlacement; + return "break"; + } + }; + + for (var _i = numberOfChecks; _i > 0; _i--) { + var _ret = _loop(_i); + + if (_ret === "break") break; + } + } + + if (state.placement !== firstFittingPlacement) { + state.modifiersData[name]._skip = true; + state.placement = firstFittingPlacement; + state.reset = true; + } +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_flip = ({ + name: 'flip', + enabled: true, + phase: 'main', + fn: flip, + requiresIfExists: ['offset'], + data: { + _skip: false + } +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/getAltAxis.js +function getAltAxis(axis) { + return axis === 'x' ? 'y' : 'x'; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/utils/within.js + +function within(min, value, max) { + return math_max(min, math_min(value, max)); +} +function withinMaxClamp(min, value, max) { + var v = within(min, value, max); + return v > max ? max : v; +} +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js + + + + + + + + + + + + +function preventOverflow(_ref) { + var state = _ref.state, + options = _ref.options, + name = _ref.name; + var _options$mainAxis = options.mainAxis, + checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, + _options$altAxis = options.altAxis, + checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis, + boundary = options.boundary, + rootBoundary = options.rootBoundary, + altBoundary = options.altBoundary, + padding = options.padding, + _options$tether = options.tether, + tether = _options$tether === void 0 ? true : _options$tether, + _options$tetherOffset = options.tetherOffset, + tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset; + var overflow = detectOverflow(state, { + boundary: boundary, + rootBoundary: rootBoundary, + padding: padding, + altBoundary: altBoundary + }); + var basePlacement = getBasePlacement(state.placement); + var variation = getVariation(state.placement); + var isBasePlacement = !variation; + var mainAxis = getMainAxisFromPlacement(basePlacement); + var altAxis = getAltAxis(mainAxis); + var popperOffsets = state.modifiersData.popperOffsets; + var referenceRect = state.rects.reference; + var popperRect = state.rects.popper; + var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, { + placement: state.placement + })) : tetherOffset; + var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? { + mainAxis: tetherOffsetValue, + altAxis: tetherOffsetValue + } : Object.assign({ + mainAxis: 0, + altAxis: 0 + }, tetherOffsetValue); + var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null; + var data = { + x: 0, + y: 0 + }; + + if (!popperOffsets) { + return; + } + + if (checkMainAxis) { + var _offsetModifierState$; + + var mainSide = mainAxis === 'y' ? enums_top : left; + var altSide = mainAxis === 'y' ? bottom : right; + var len = mainAxis === 'y' ? 'height' : 'width'; + var offset = popperOffsets[mainAxis]; + var min = offset + overflow[mainSide]; + var max = offset - overflow[altSide]; + var additive = tether ? -popperRect[len] / 2 : 0; + var minLen = variation === start ? referenceRect[len] : popperRect[len]; + var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go + // outside the reference bounds + + var arrowElement = state.elements.arrow; + var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : { + width: 0, + height: 0 + }; + var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject(); + var arrowPaddingMin = arrowPaddingObject[mainSide]; + var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want + // to include its full size in the calculation. If the reference is small + // and near the edge of a boundary, the popper can overflow even if the + // reference is not overflowing as well (e.g. virtual elements with no + // width or height) + + var arrowLen = within(0, referenceRect[len], arrowRect[len]); + var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis; + var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis; + var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow); + var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0; + var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0; + var tetherMin = offset + minOffset - offsetModifierValue - clientOffset; + var tetherMax = offset + maxOffset - offsetModifierValue; + var preventedOffset = within(tether ? math_min(min, tetherMin) : min, offset, tether ? math_max(max, tetherMax) : max); + popperOffsets[mainAxis] = preventedOffset; + data[mainAxis] = preventedOffset - offset; + } + + if (checkAltAxis) { + var _offsetModifierState$2; + + var _mainSide = mainAxis === 'x' ? enums_top : left; + + var _altSide = mainAxis === 'x' ? bottom : right; + + var _offset = popperOffsets[altAxis]; + + var _len = altAxis === 'y' ? 'height' : 'width'; + + var _min = _offset + overflow[_mainSide]; + + var _max = _offset - overflow[_altSide]; + + var isOriginSide = [enums_top, left].indexOf(basePlacement) !== -1; + + var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0; + + var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis; + + var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max; + + var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max); + + popperOffsets[altAxis] = _preventedOffset; + data[altAxis] = _preventedOffset - _offset; + } + + state.modifiersData[name] = data; +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_preventOverflow = ({ + name: 'preventOverflow', + enabled: true, + phase: 'main', + fn: preventOverflow, + requiresIfExists: ['offset'] +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/arrow.js + + + + + + + + + + // eslint-disable-next-line import/no-unused-modules + +var toPaddingObject = function toPaddingObject(padding, state) { + padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, { + placement: state.placement + })) : padding; + return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements)); +}; + +function arrow(_ref) { + var _state$modifiersData$; + + var state = _ref.state, + name = _ref.name, + options = _ref.options; + var arrowElement = state.elements.arrow; + var popperOffsets = state.modifiersData.popperOffsets; + var basePlacement = getBasePlacement(state.placement); + var axis = getMainAxisFromPlacement(basePlacement); + var isVertical = [left, right].indexOf(basePlacement) >= 0; + var len = isVertical ? 'height' : 'width'; + + if (!arrowElement || !popperOffsets) { + return; + } + + var paddingObject = toPaddingObject(options.padding, state); + var arrowRect = getLayoutRect(arrowElement); + var minProp = axis === 'y' ? enums_top : left; + var maxProp = axis === 'y' ? bottom : right; + var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len]; + var startDiff = popperOffsets[axis] - state.rects.reference[axis]; + var arrowOffsetParent = getOffsetParent(arrowElement); + var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0; + var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is + // outside of the popper bounds + + var min = paddingObject[minProp]; + var max = clientSize - arrowRect[len] - paddingObject[maxProp]; + var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference; + var offset = within(min, center, max); // Prevents breaking syntax highlighting... + + var axisProp = axis; + state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$); +} + +function arrow_effect(_ref2) { + var state = _ref2.state, + options = _ref2.options; + var _options$element = options.element, + arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element; + + if (arrowElement == null) { + return; + } // CSS selector + + + if (typeof arrowElement === 'string') { + arrowElement = state.elements.popper.querySelector(arrowElement); + + if (!arrowElement) { + return; + } + } + + if (false) {} + + if (!contains(state.elements.popper, arrowElement)) { + if (false) {} + + return; + } + + state.elements.arrow = arrowElement; +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_arrow = ({ + name: 'arrow', + enabled: true, + phase: 'main', + fn: arrow, + effect: arrow_effect, + requires: ['popperOffsets'], + requiresIfExists: ['preventOverflow'] +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/modifiers/hide.js + + + +function getSideOffsets(overflow, rect, preventedOffsets) { + if (preventedOffsets === void 0) { + preventedOffsets = { + x: 0, + y: 0 + }; + } + + return { + top: overflow.top - rect.height - preventedOffsets.y, + right: overflow.right - rect.width + preventedOffsets.x, + bottom: overflow.bottom - rect.height + preventedOffsets.y, + left: overflow.left - rect.width - preventedOffsets.x + }; +} + +function isAnySideFullyClipped(overflow) { + return [enums_top, right, bottom, left].some(function (side) { + return overflow[side] >= 0; + }); +} + +function hide(_ref) { + var state = _ref.state, + name = _ref.name; + var referenceRect = state.rects.reference; + var popperRect = state.rects.popper; + var preventedOffsets = state.modifiersData.preventOverflow; + var referenceOverflow = detectOverflow(state, { + elementContext: 'reference' + }); + var popperAltOverflow = detectOverflow(state, { + altBoundary: true + }); + var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect); + var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets); + var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets); + var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets); + state.modifiersData[name] = { + referenceClippingOffsets: referenceClippingOffsets, + popperEscapeOffsets: popperEscapeOffsets, + isReferenceHidden: isReferenceHidden, + hasPopperEscaped: hasPopperEscaped + }; + state.attributes.popper = Object.assign({}, state.attributes.popper, { + 'data-popper-reference-hidden': isReferenceHidden, + 'data-popper-escaped': hasPopperEscaped + }); +} // eslint-disable-next-line import/no-unused-modules + + +/* harmony default export */ const modifiers_hide = ({ + name: 'hide', + enabled: true, + phase: 'main', + requiresIfExists: ['preventOverflow'], + fn: hide +}); +;// CONCATENATED MODULE: ./node_modules/@popperjs/core/lib/popper.js + + + + + + + + + + +var defaultModifiers = [eventListeners, modifiers_popperOffsets, modifiers_computeStyles, modifiers_applyStyles, modifiers_offset, modifiers_flip, modifiers_preventOverflow, modifiers_arrow, modifiers_hide]; +var popper_createPopper = /*#__PURE__*/popperGenerator({ + defaultModifiers: defaultModifiers +}); // eslint-disable-next-line import/no-unused-modules + + // eslint-disable-next-line import/no-unused-modules + + // eslint-disable-next-line import/no-unused-modules + + +;// CONCATENATED MODULE: ./src/components/dropdown.js +function dropdown_toConsumableArray(arr) { return dropdown_arrayWithoutHoles(arr) || dropdown_iterableToArray(arr) || dropdown_unsupportedIterableToArray(arr) || dropdown_nonIterableSpread(); } + +function dropdown_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function dropdown_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return dropdown_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return dropdown_arrayLikeToArray(o, minLen); } + +function dropdown_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function dropdown_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return dropdown_arrayLikeToArray(arr); } + +function dropdown_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function dropdown_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function dropdown_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? dropdown_ownKeys(Object(source), !0).forEach(function (key) { dropdown_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : dropdown_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function dropdown_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function dropdown_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function dropdown_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function dropdown_createClass(Constructor, protoProps, staticProps) { if (protoProps) dropdown_defineProperties(Constructor.prototype, protoProps); if (staticProps) dropdown_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + + +var dropdown_Default = { + placement: 'bottom', + triggerType: 'click', + onShow: function onShow() {}, + onHide: function onHide() {} +}; + +var Dropdown = /*#__PURE__*/function () { + function Dropdown() { + var targetElement = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var triggerElement = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + dropdown_classCallCheck(this, Dropdown); + + this._targetEl = targetElement; + this._triggerEl = triggerElement; + this._options = dropdown_objectSpread(dropdown_objectSpread({}, dropdown_Default), options); + this._popperInstance = this._createPopperInstace(); + this._visible = false; + + this._init(); + } + + dropdown_createClass(Dropdown, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._triggerEl) { + this._triggerEl.addEventListener('click', function () { + _this.toggle(); + }); + } + } + }, { + key: "_createPopperInstace", + value: function _createPopperInstace() { + return popper_createPopper(this._triggerEl, this._targetEl, { + placement: this._options.placement, + modifiers: [{ + name: 'offset', + options: { + offset: [0, 10] + } + }] + }); + } + }, { + key: "_handleClickOutside", + value: function _handleClickOutside(ev, targetEl) { + var clickedEl = ev.target; + + if (clickedEl !== targetEl && !targetEl.contains(clickedEl) && !this._triggerEl.contains(clickedEl) && this._visible) { + this.hide(); + } + + document.body.removeEventListener('click', this._handleClickOutside, true); + } + }, { + key: "toggle", + value: function toggle() { + if (this._visible) { + this.hide(); + document.body.removeEventListener('click', this._handleClickOutside, true); + } else { + this.show(); + } + } + }, { + key: "show", + value: function show() { + var _this2 = this; + + this._targetEl.classList.remove('hidden'); + + this._targetEl.classList.add('block'); // Enable the event listeners + + + this._popperInstance.setOptions(function (options) { + return dropdown_objectSpread(dropdown_objectSpread({}, options), {}, { + modifiers: [].concat(dropdown_toConsumableArray(options.modifiers), [{ + name: 'eventListeners', + enabled: true + }]) + }); + }); + + document.body.addEventListener('click', function (ev) { + _this2._handleClickOutside(ev, _this2._targetEl); + }, true); // Update its position + + this._popperInstance.update(); + + this._visible = true; // callback function + + this._options.onShow(this); + } + }, { + key: "hide", + value: function hide() { + this._targetEl.classList.remove('block'); + + this._targetEl.classList.add('hidden'); // Disable the event listeners + + + this._popperInstance.setOptions(function (options) { + return dropdown_objectSpread(dropdown_objectSpread({}, options), {}, { + modifiers: [].concat(dropdown_toConsumableArray(options.modifiers), [{ + name: 'eventListeners', + enabled: false + }]) + }); + }); + + this._visible = false; // callback function + + this._options.onHide(this); + } + }]); + + return Dropdown; +}(); + +window.Dropdown = Dropdown; + +function initDropdown() { + document.querySelectorAll('[data-dropdown-toggle]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-dropdown-toggle')); + var placement = triggerEl.getAttribute('data-dropdown-placement'); + new Dropdown(targetEl, triggerEl, { + placement: placement ? placement : dropdown_Default.placement + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initDropdown(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initDropdown); +} + +/* harmony default export */ const dropdown = (Dropdown); +;// CONCATENATED MODULE: ./src/components/modal.js +function modal_toConsumableArray(arr) { return modal_arrayWithoutHoles(arr) || modal_iterableToArray(arr) || modal_unsupportedIterableToArray(arr) || modal_nonIterableSpread(); } + +function modal_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function modal_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return modal_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return modal_arrayLikeToArray(o, minLen); } + +function modal_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function modal_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return modal_arrayLikeToArray(arr); } + +function modal_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function modal_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function modal_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? modal_ownKeys(Object(source), !0).forEach(function (key) { modal_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : modal_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function modal_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function modal_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function modal_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function modal_createClass(Constructor, protoProps, staticProps) { if (protoProps) modal_defineProperties(Constructor.prototype, protoProps); if (staticProps) modal_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var modal_Default = { + placement: 'center', + backdropClasses: 'bg-gray-900 bg-opacity-50 dark:bg-opacity-80 fixed inset-0 z-40', + onHide: function onHide() {}, + onShow: function onShow() {}, + onToggle: function onToggle() {} +}; + +var Modal = /*#__PURE__*/function () { + function Modal() { + var targetEl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + modal_classCallCheck(this, Modal); + + this._targetEl = targetEl; + this._options = modal_objectSpread(modal_objectSpread({}, modal_Default), options); + this._isHidden = true; + + this._init(); + } + + modal_createClass(Modal, [{ + key: "_init", + value: function _init() { + var _this = this; + + this._getPlacementClasses().map(function (c) { + _this._targetEl.classList.add(c); + }); + } + }, { + key: "_createBackdrop", + value: function _createBackdrop() { + if (this._isHidden) { + var _backdropEl$classList; + + var backdropEl = document.createElement('div'); + backdropEl.setAttribute('modal-backdrop', ''); + + (_backdropEl$classList = backdropEl.classList).add.apply(_backdropEl$classList, modal_toConsumableArray(this._options.backdropClasses.split(" "))); + + document.querySelector('body').append(backdropEl); + } + } + }, { + key: "_destroyBackdropEl", + value: function _destroyBackdropEl() { + if (!this._isHidden) { + document.querySelector('[modal-backdrop]').remove(); + } + } + }, { + key: "_getPlacementClasses", + value: function _getPlacementClasses() { + switch (this._options.placement) { + // top + case 'top-left': + return ['justify-start', 'items-start']; + + case 'top-center': + return ['justify-center', 'items-start']; + + case 'top-right': + return ['justify-end', 'items-start']; + // center + + case 'center-left': + return ['justify-start', 'items-center']; + + case 'center': + return ['justify-center', 'items-center']; + + case 'center-right': + return ['justify-end', 'items-center']; + // bottom + + case 'bottom-left': + return ['justify-start', 'items-end']; + + case 'bottom-center': + return ['justify-center', 'items-end']; + + case 'bottom-right': + return ['justify-end', 'items-end']; + + default: + return ['justify-center', 'items-center']; + } + } + }, { + key: "toggle", + value: function toggle() { + if (this._isHidden) { + this.show(); + } else { + this.hide(); + } // callback function + + + this._options.onToggle(this); + } + }, { + key: "show", + value: function show() { + this._targetEl.classList.add('flex'); + + this._targetEl.classList.remove('hidden'); + + this._targetEl.setAttribute('aria-modal', 'true'); + + this._targetEl.setAttribute('role', 'dialog'); + + this._targetEl.removeAttribute('aria-hidden'); + + this._createBackdrop(); + + this._isHidden = false; // callback function + + this._options.onShow(this); + } + }, { + key: "hide", + value: function hide() { + this._targetEl.classList.add('hidden'); + + this._targetEl.classList.remove('flex'); + + this._targetEl.setAttribute('aria-hidden', 'true'); + + this._targetEl.removeAttribute('aria-modal'); + + this._targetEl.removeAttribute('role'); + + this._destroyBackdropEl(); + + this._isHidden = true; // callback function + + this._options.onHide(this); + } + }]); + + return Modal; +}(); + +window.Modal = Modal; + +var getModalInstance = function getModalInstance(id, instances) { + if (instances.some(function (modalInstance) { + return modalInstance.id === id; + })) { + return instances.find(function (modalInstance) { + return modalInstance.id === id; + }); + } + + return false; +}; + +function initModal() { + var modalInstances = []; + document.querySelectorAll('[data-modal-toggle]').forEach(function (el) { + var modalId = el.getAttribute('data-modal-toggle'); + var modalEl = document.getElementById(modalId); + var placement = modalEl.getAttribute('data-modal-placement'); + + if (modalEl) { + if (!modalEl.hasAttribute('aria-hidden') && !modalEl.hasAttribute('aria-modal')) { + modalEl.setAttribute('aria-hidden', 'true'); + } + } + + var modal = null; + + if (getModalInstance(modalId, modalInstances)) { + modal = getModalInstance(modalId, modalInstances); + modal = modal.object; + } else { + modal = new Modal(modalEl, { + placement: placement ? placement : modal_Default.placement + }); + modalInstances.push({ + id: modalId, + object: modal + }); + } + + if (modalEl.hasAttribute('data-modal-show') && modalEl.getAttribute('data-modal-show') === 'true') { + modal.show(); + } + + el.addEventListener('click', function () { + modal.toggle(); + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initModal(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initModal); +} + +/* harmony default export */ const modal = (Modal); +;// CONCATENATED MODULE: ./src/components/drawer.js +function drawer_toConsumableArray(arr) { return drawer_arrayWithoutHoles(arr) || drawer_iterableToArray(arr) || drawer_unsupportedIterableToArray(arr) || drawer_nonIterableSpread(); } + +function drawer_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function drawer_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return drawer_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return drawer_arrayLikeToArray(o, minLen); } + +function drawer_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function drawer_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return drawer_arrayLikeToArray(arr); } + +function drawer_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function drawer_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function drawer_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? drawer_ownKeys(Object(source), !0).forEach(function (key) { drawer_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : drawer_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function drawer_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function drawer_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function drawer_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function drawer_createClass(Constructor, protoProps, staticProps) { if (protoProps) drawer_defineProperties(Constructor.prototype, protoProps); if (staticProps) drawer_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var drawer_Default = { + placement: 'left', + bodyScrolling: false, + backdrop: true, + edge: false, + edgeOffset: 'bottom-[60px]', + backdropClasses: 'bg-gray-900 bg-opacity-50 dark:bg-opacity-80 fixed inset-0 z-30', + onShow: function onShow() {}, + onHide: function onHide() {}, + onToggle: function onToggle() {} +}; + +var Drawer = /*#__PURE__*/function () { + function Drawer() { + var targetEl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var options = arguments.length > 1 ? arguments[1] : undefined; + + drawer_classCallCheck(this, Drawer); + + this._targetEl = targetEl; + this._options = drawer_objectSpread(drawer_objectSpread({}, drawer_Default), options); + this._visible = false; + + this._init(); + } + + drawer_createClass(Drawer, [{ + key: "_init", + value: function _init() { + var _this = this; + + // set initial accessibility attributes + if (this._targetEl) { + this._targetEl.setAttribute('aria-hidden', 'true'); + + this._targetEl.classList.add('transition-transform'); + } // set base placement classes + + + this._getPlacementClasses(this._options.placement).base.map(function (c) { + _this._targetEl.classList.add(c); + }); // hide by default + + + this.hide(); + } + }, { + key: "isVisible", + value: function isVisible() { + return this._visible; + } + }, { + key: "hide", + value: function hide() { + var _this2 = this; + + // based on the edge option show placement classes + if (this._options.edge) { + this._getPlacementClasses(this._options.placement + '-edge').active.map(function (c) { + _this2._targetEl.classList.remove(c); + }); + + this._getPlacementClasses(this._options.placement + '-edge').inactive.map(function (c) { + _this2._targetEl.classList.add(c); + }); + } else { + this._getPlacementClasses(this._options.placement).active.map(function (c) { + _this2._targetEl.classList.remove(c); + }); + + this._getPlacementClasses(this._options.placement).inactive.map(function (c) { + _this2._targetEl.classList.add(c); + }); + } // set accessibility attributes + + + this._targetEl.setAttribute('aria-hidden', 'true'); + + this._targetEl.removeAttribute('aria-modal'); + + this._targetEl.removeAttribute('role'); // enable body scroll + + + if (!this._options.bodyScrolling) { + document.body.classList.remove('overflow-hidden'); + } // destroy backdrop + + + if (this._options.backdrop) { + this._destroyBackdropEl(); + } + + this._visible = false; // callback function + + this._options.onHide(this); + } + }, { + key: "show", + value: function show() { + var _this3 = this; + + if (this._options.edge) { + this._getPlacementClasses(this._options.placement + '-edge').active.map(function (c) { + _this3._targetEl.classList.add(c); + }); + + this._getPlacementClasses(this._options.placement + '-edge').inactive.map(function (c) { + _this3._targetEl.classList.remove(c); + }); + } else { + this._getPlacementClasses(this._options.placement).active.map(function (c) { + _this3._targetEl.classList.add(c); + }); + + this._getPlacementClasses(this._options.placement).inactive.map(function (c) { + _this3._targetEl.classList.remove(c); + }); + } // set accessibility attributes + + + this._targetEl.setAttribute('aria-modal', 'true'); + + this._targetEl.setAttribute('role', 'dialog'); + + this._targetEl.removeAttribute('aria-hidden'); // disable body scroll + + + if (!this._options.bodyScrolling) { + document.body.classList.add('overflow-hidden'); + } // show backdrop + + + if (this._options.backdrop) { + this._createBackdrop(); + } + + this._visible = true; // callback function + + this._options.onShow(this); + } + }, { + key: "toggle", + value: function toggle() { + if (this.isVisible()) { + this.hide(); + } else { + this.show(); + } + } + }, { + key: "_createBackdrop", + value: function _createBackdrop() { + var _this4 = this; + + if (!this._visible) { + var _backdropEl$classList; + + var backdropEl = document.createElement('div'); + backdropEl.setAttribute('drawer-backdrop', ''); + + (_backdropEl$classList = backdropEl.classList).add.apply(_backdropEl$classList, drawer_toConsumableArray(this._options.backdropClasses.split(" "))); + + document.querySelector('body').append(backdropEl); + backdropEl.addEventListener('click', function () { + _this4.hide(); + }); + } + } + }, { + key: "_destroyBackdropEl", + value: function _destroyBackdropEl() { + if (this._visible) { + document.querySelector('[drawer-backdrop]').remove(); + } + } + }, { + key: "_getPlacementClasses", + value: function _getPlacementClasses(placement) { + switch (placement) { + case 'top': + return { + base: ['top-0', 'left-0', 'right-0'], + active: ['transform-none'], + inactive: ['-translate-y-full'] + }; + + case 'right': + return { + base: ['right-0', 'top-0'], + active: ['transform-none'], + inactive: ['translate-x-full'] + }; + + case 'bottom': + return { + base: ['bottom-0', 'left-0', 'right-0'], + active: ['transform-none'], + inactive: ['translate-y-full'] + }; + + case 'left': + return { + base: ['left-0', 'top-0'], + active: ['transform-none'], + inactive: ['-translate-x-full'] + }; + + case 'bottom-edge': + return { + base: ['left-0', 'top-0'], + active: ['transform-none'], + inactive: ['translate-y-full', this._options.edgeOffset] + }; + + default: + return { + base: ['left-0', 'top-0'], + active: ['transform-none'], + inactive: ['-translate-x-full'] + }; + } + } + }]); + + return Drawer; +}(); + +window.Drawer = Drawer; + +var getDrawerInstance = function getDrawerInstance(id, instances) { + if (instances.some(function (drawerInstance) { + return drawerInstance.id === id; + })) { + return instances.find(function (drawerInstance) { + return drawerInstance.id === id; + }); + } + + return false; +}; + +function initDrawer() { + var drawerInstances = []; + document.querySelectorAll('[data-drawer-target]').forEach(function (triggerEl) { + // mandatory + var targetEl = document.getElementById(triggerEl.getAttribute('data-drawer-target')); + var drawerId = targetEl.id; // optional + + var placement = triggerEl.getAttribute('data-drawer-placement'); + var bodyScrolling = triggerEl.getAttribute('data-drawer-body-scrolling'); + var backdrop = triggerEl.getAttribute('data-drawer-backdrop'); + var edge = triggerEl.getAttribute('data-drawer-edge'); + var edgeOffset = triggerEl.getAttribute('data-drawer-edge-offset'); + var drawer = null; + + if (getDrawerInstance(drawerId, drawerInstances)) { + drawer = getDrawerInstance(drawerId, drawerInstances); + drawer = drawer.object; + } else { + drawer = new Drawer(targetEl, { + placement: placement ? placement : drawer_Default.placement, + bodyScrolling: bodyScrolling ? bodyScrolling === 'true' ? true : false : drawer_Default.bodyScrolling, + backdrop: backdrop ? backdrop === 'true' ? true : false : drawer_Default.backdrop, + edge: edge ? edge === 'true' ? true : false : drawer_Default.edge, + edgeOffset: edgeOffset ? edgeOffset : drawer_Default.edgeOffset + }); + drawerInstances.push({ + id: drawerId, + object: drawer + }); + } + }); + document.querySelectorAll('[data-drawer-toggle]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-drawer-toggle')); + var drawerId = targetEl.id; + var drawer = getDrawerInstance(drawerId, drawerInstances); + triggerEl.addEventListener('click', function () { + if (drawer.object.isVisible()) { + drawer.object.hide(); + } else { + drawer.object.show(); + } + }); + }); + document.querySelectorAll('[data-drawer-dismiss]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-drawer-dismiss')); + var drawerId = targetEl.id; + var drawer = getDrawerInstance(drawerId, drawerInstances); + triggerEl.addEventListener('click', function () { + drawer.object.hide(); + }); + }); + document.querySelectorAll('[data-drawer-show]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-drawer-show')); + var drawerId = targetEl.id; + var drawer = getDrawerInstance(drawerId, drawerInstances); + triggerEl.addEventListener('click', function () { + drawer.object.show(); + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initDrawer(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initDrawer); +} + +/* harmony default export */ const drawer = (Drawer); +;// CONCATENATED MODULE: ./src/components/tabs.js +function tabs_toConsumableArray(arr) { return tabs_arrayWithoutHoles(arr) || tabs_iterableToArray(arr) || tabs_unsupportedIterableToArray(arr) || tabs_nonIterableSpread(); } + +function tabs_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function tabs_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return tabs_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return tabs_arrayLikeToArray(o, minLen); } + +function tabs_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function tabs_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return tabs_arrayLikeToArray(arr); } + +function tabs_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function tabs_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function tabs_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? tabs_ownKeys(Object(source), !0).forEach(function (key) { tabs_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : tabs_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function tabs_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function tabs_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function tabs_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function tabs_createClass(Constructor, protoProps, staticProps) { if (protoProps) tabs_defineProperties(Constructor.prototype, protoProps); if (staticProps) tabs_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + +var tabs_Default = { + defaultTabId: null, + activeClasses: 'text-blue-600 hover:text-blue-600 dark:text-blue-500 dark:hover:text-blue-500 border-blue-600 dark:border-blue-500', + inactiveClasses: 'dark:border-transparent text-gray-500 hover:text-gray-600 dark:text-gray-400 border-gray-100 hover:border-gray-300 dark:border-gray-700 dark:hover:text-gray-300', + onShow: function onShow() {} +}; + +var Tabs = /*#__PURE__*/function () { + function Tabs() { + var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : []; + var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; + + tabs_classCallCheck(this, Tabs); + + this._items = items; + this._activeTab = options ? this.getTab(options.defaultTabId) : null; + this._options = tabs_objectSpread(tabs_objectSpread({}, tabs_Default), options); + + this._init(); + } + + tabs_createClass(Tabs, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._items.length) { + // set the first tab as active if not set by explicitly + if (!this._activeTab) { + this._setActiveTab(this._items[0]); + } // force show the first default tab + + + this.show(this._activeTab.id, true); // show tab content based on click + + this._items.map(function (tab) { + tab.triggerEl.addEventListener('click', function () { + _this.show(tab.id); + }); + }); + } + } + }, { + key: "getActiveTab", + value: function getActiveTab() { + return this._activeTab; + } + }, { + key: "_setActiveTab", + value: function _setActiveTab(tab) { + this._activeTab = tab; + } + }, { + key: "getTab", + value: function getTab(id) { + return this._items.filter(function (t) { + return t.id === id; + })[0]; + } + }, { + key: "show", + value: function show(id) { + var _this2 = this, + _tab$triggerEl$classL, + _tab$triggerEl$classL2; + + var forceShow = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false; + var tab = this.getTab(id); // don't do anything if already active + + if (tab === this._activeTab && !forceShow) { + return; + } // hide other tabs + + + this._items.map(function (t) { + if (t !== tab) { + var _t$triggerEl$classLis, _t$triggerEl$classLis2; + + (_t$triggerEl$classLis = t.triggerEl.classList).remove.apply(_t$triggerEl$classLis, tabs_toConsumableArray(_this2._options.activeClasses.split(" "))); + + (_t$triggerEl$classLis2 = t.triggerEl.classList).add.apply(_t$triggerEl$classLis2, tabs_toConsumableArray(_this2._options.inactiveClasses.split(" "))); + + t.targetEl.classList.add('hidden'); + t.triggerEl.setAttribute('aria-selected', false); + } + }); // show active tab + + + (_tab$triggerEl$classL = tab.triggerEl.classList).add.apply(_tab$triggerEl$classL, tabs_toConsumableArray(this._options.activeClasses.split(" "))); + + (_tab$triggerEl$classL2 = tab.triggerEl.classList).remove.apply(_tab$triggerEl$classL2, tabs_toConsumableArray(this._options.inactiveClasses.split(" "))); + + tab.triggerEl.setAttribute('aria-selected', true); + tab.targetEl.classList.remove('hidden'); + + this._setActiveTab(tab); // callback function + + + this._options.onShow(this, tab); + } + }]); + + return Tabs; +}(); + +window.Tabs = Tabs; + +function initTabs() { + document.querySelectorAll('[data-tabs-toggle]').forEach(function (triggerEl) { + var tabElements = []; + var defaultTabId = null; + triggerEl.querySelectorAll('[role="tab"]').forEach(function (el) { + var isActive = el.getAttribute('aria-selected') === 'true'; + var tab = { + id: el.getAttribute('data-tabs-target'), + triggerEl: el, + targetEl: document.querySelector(el.getAttribute('data-tabs-target')) + }; + tabElements.push(tab); + + if (isActive) { + defaultTabId = tab.id; + } + }); + new Tabs(tabElements, { + defaultTabId: defaultTabId + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initTabs(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initTabs); +} + +/* harmony default export */ const tabs = (Tabs); +;// CONCATENATED MODULE: ./src/components/tooltip.js +function tooltip_toConsumableArray(arr) { return tooltip_arrayWithoutHoles(arr) || tooltip_iterableToArray(arr) || tooltip_unsupportedIterableToArray(arr) || tooltip_nonIterableSpread(); } + +function tooltip_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function tooltip_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return tooltip_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return tooltip_arrayLikeToArray(o, minLen); } + +function tooltip_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function tooltip_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return tooltip_arrayLikeToArray(arr); } + +function tooltip_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function tooltip_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function tooltip_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? tooltip_ownKeys(Object(source), !0).forEach(function (key) { tooltip_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : tooltip_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function tooltip_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function tooltip_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function tooltip_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function tooltip_createClass(Constructor, protoProps, staticProps) { if (protoProps) tooltip_defineProperties(Constructor.prototype, protoProps); if (staticProps) tooltip_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + + +var tooltip_Default = { + placement: 'top', + triggerType: 'hover', + onShow: function onShow() {}, + onHide: function onHide() {} +}; + +var Tooltip = /*#__PURE__*/function () { + function Tooltip() { + var targetEl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var triggerEl = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + tooltip_classCallCheck(this, Tooltip); + + this._targetEl = targetEl; + this._triggerEl = triggerEl; + this._options = tooltip_objectSpread(tooltip_objectSpread({}, tooltip_Default), options); + this._popperInstance = this._createPopperInstace(); + + this._init(); + } + + tooltip_createClass(Tooltip, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._triggerEl) { + var triggerEvents = this._getTriggerEvents(); + + triggerEvents.showEvents.forEach(function (ev) { + _this._triggerEl.addEventListener(ev, function () { + _this.show(); + }); + }); + triggerEvents.hideEvents.forEach(function (ev) { + _this._triggerEl.addEventListener(ev, function () { + _this.hide(); + }); + }); + } + } + }, { + key: "_createPopperInstace", + value: function _createPopperInstace() { + return popper_createPopper(this._triggerEl, this._targetEl, { + placement: this._options.placement, + modifiers: [{ + name: 'offset', + options: { + offset: [0, 8] + } + }] + }); + } + }, { + key: "_getTriggerEvents", + value: function _getTriggerEvents() { + switch (this._options.triggerType) { + case 'hover': + return { + showEvents: ['mouseenter', 'focus'], + hideEvents: ['mouseleave', 'blur'] + }; + + case 'click': + return { + showEvents: ['click', 'focus'], + hideEvents: ['focusout', 'blur'] + }; + + default: + return { + showEvents: ['mouseenter', 'focus'], + hideEvents: ['mouseleave', 'blur'] + }; + } + } + }, { + key: "show", + value: function show() { + this._targetEl.classList.remove('opacity-0', 'invisible'); + + this._targetEl.classList.add('opacity-100', 'visible'); // Enable the event listeners + + + this._popperInstance.setOptions(function (options) { + return tooltip_objectSpread(tooltip_objectSpread({}, options), {}, { + modifiers: [].concat(tooltip_toConsumableArray(options.modifiers), [{ + name: 'eventListeners', + enabled: true + }]) + }); + }); // Update its position + + + this._popperInstance.update(); // callback function + + + this._options.onShow(this); + } + }, { + key: "hide", + value: function hide() { + this._targetEl.classList.remove('opacity-100', 'visible'); + + this._targetEl.classList.add('opacity-0', 'invisible'); // Disable the event listeners + + + this._popperInstance.setOptions(function (options) { + return tooltip_objectSpread(tooltip_objectSpread({}, options), {}, { + modifiers: [].concat(tooltip_toConsumableArray(options.modifiers), [{ + name: 'eventListeners', + enabled: false + }]) + }); + }); // callback function + + + this._options.onHide(this); + } + }]); + + return Tooltip; +}(); + +window.Tooltip = Tooltip; + +function initTooltip() { + document.querySelectorAll('[data-tooltip-target]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-tooltip-target')); + var triggerType = triggerEl.getAttribute('data-tooltip-trigger'); + var placement = triggerEl.getAttribute('data-tooltip-placement'); + new Tooltip(targetEl, triggerEl, { + placement: placement ? placement : tooltip_Default.placement, + triggerType: triggerType ? triggerType : tooltip_Default.triggerType + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initTooltip(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initTooltip); +} + +/* harmony default export */ const tooltip = (Tooltip); +;// CONCATENATED MODULE: ./src/components/popover.js +function popover_toConsumableArray(arr) { return popover_arrayWithoutHoles(arr) || popover_iterableToArray(arr) || popover_unsupportedIterableToArray(arr) || popover_nonIterableSpread(); } + +function popover_nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } + +function popover_unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return popover_arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return popover_arrayLikeToArray(o, minLen); } + +function popover_iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } + +function popover_arrayWithoutHoles(arr) { if (Array.isArray(arr)) return popover_arrayLikeToArray(arr); } + +function popover_arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } + +function popover_ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } + +function popover_objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? popover_ownKeys(Object(source), !0).forEach(function (key) { popover_defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : popover_ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } + +function popover_defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } + +function popover_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +function popover_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function popover_createClass(Constructor, protoProps, staticProps) { if (protoProps) popover_defineProperties(Constructor.prototype, protoProps); if (staticProps) popover_defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } + + +var popover_Default = { + placement: 'top', + offset: 10, + triggerType: 'hover', + onShow: function onShow() {}, + onHide: function onHide() {} +}; + +var Popover = /*#__PURE__*/function () { + function Popover() { + var targetEl = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; + var triggerEl = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; + var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + + popover_classCallCheck(this, Popover); + + this._targetEl = targetEl; + this._triggerEl = triggerEl; + this._options = popover_objectSpread(popover_objectSpread({}, popover_Default), options); + this._popperInstance = this._createPopperInstace(); + + this._init(); + } + + popover_createClass(Popover, [{ + key: "_init", + value: function _init() { + var _this = this; + + if (this._triggerEl) { + var triggerEvents = this._getTriggerEvents(); + + triggerEvents.showEvents.forEach(function (ev) { + _this._triggerEl.addEventListener(ev, function () { + _this.show(); + }); + + _this._targetEl.addEventListener(ev, function () { + _this.show(); + }); + }); + triggerEvents.hideEvents.forEach(function (ev) { + _this._triggerEl.addEventListener(ev, function () { + setTimeout(function () { + if (!_this._targetEl.matches(':hover')) { + _this.hide(); + } + }, 100); + }); + + _this._targetEl.addEventListener(ev, function () { + setTimeout(function () { + if (!_this._triggerEl.matches(':hover')) { + _this.hide(); + } + }, 100); + }); + }); + } + } + }, { + key: "_createPopperInstace", + value: function _createPopperInstace() { + return popper_createPopper(this._triggerEl, this._targetEl, { + placement: this._options.placement, + modifiers: [{ + name: 'offset', + options: { + offset: [0, this._options.offset] + } + }] + }); + } + }, { + key: "_getTriggerEvents", + value: function _getTriggerEvents() { + switch (this._options.triggerType) { + case 'hover': + return { + showEvents: ['mouseenter', 'focus'], + hideEvents: ['mouseleave', 'blur'] + }; + + case 'click': + return { + showEvents: ['click', 'focus'], + hideEvents: ['focusout', 'blur'] + }; + + default: + return { + showEvents: ['mouseenter', 'focus'], + hideEvents: ['mouseleave', 'blur'] + }; + } + } + }, { + key: "show", + value: function show() { + this._targetEl.classList.remove('opacity-0', 'invisible'); + + this._targetEl.classList.add('opacity-100', 'visible'); // Enable the event listeners + + + this._popperInstance.setOptions(function (options) { + return popover_objectSpread(popover_objectSpread({}, options), {}, { + modifiers: [].concat(popover_toConsumableArray(options.modifiers), [{ + name: 'eventListeners', + enabled: true + }]) + }); + }); // Update its position + + + this._popperInstance.update(); // callback function + + + this._options.onShow(this); + } + }, { + key: "hide", + value: function hide() { + this._targetEl.classList.remove('opacity-100', 'visible'); + + this._targetEl.classList.add('opacity-0', 'invisible'); // Disable the event listeners + + + this._popperInstance.setOptions(function (options) { + return popover_objectSpread(popover_objectSpread({}, options), {}, { + modifiers: [].concat(popover_toConsumableArray(options.modifiers), [{ + name: 'eventListeners', + enabled: false + }]) + }); + }); // callback function + + + this._options.onHide(this); + } + }]); + + return Popover; +}(); + +window.Popover = Popover; + +function initPopover() { + document.querySelectorAll('[data-popover-target]').forEach(function (triggerEl) { + var targetEl = document.getElementById(triggerEl.getAttribute('data-popover-target')); + var triggerType = triggerEl.getAttribute('data-popover-trigger'); + var placement = triggerEl.getAttribute('data-popover-placement'); + var offset = triggerEl.getAttribute('data-popover-offset'); + new Popover(targetEl, triggerEl, { + placement: placement ? placement : popover_Default.placement, + offset: offset ? parseInt(offset) : popover_Default.offset, + triggerType: triggerType ? triggerType : popover_Default.triggerType + }); + }); +} + +if (document.readyState !== 'loading') { + // DOMContentLoaded event were already fired. Perform explicit initialization now + initPopover(); +} else { + // DOMContentLoaded event not yet fired, attach initialization process to it + document.addEventListener('DOMContentLoaded', initPopover); +} + +/* harmony default export */ const popover = (Popover); +;// CONCATENATED MODULE: ./src/flowbite.js + // core components + + + + + + + + + + + +/* harmony default export */ const flowbite = ({ + Accordion: accordion, + Collapse: collapse, + Carousel: carousel, + Dismiss: dismiss, + Dropdown: dropdown, + Modal: modal, + Drawer: drawer, + Tabs: tabs, + Tooltip: tooltip, + Popover: popover +}); +/******/ })() +; +//# sourceMappingURL=flowbite.js.map diff --git a/basicswap/static/js/libs/tv.js b/basicswap/static/js/libs/tv.js new file mode 100644 index 0000000..a5c7e97 --- /dev/null +++ b/basicswap/static/js/libs/tv.js @@ -0,0 +1 @@ +"use strict";!function(){if(!window.TradingView||!window.TradingView.host||window.TradingView.reoloadTvjs){var e,t,o,i,n,r,s,a={"color-gull-gray":"#9db2bd","color-brand":"#2962FF","color-brand-hover":"#1E53E5","color-brand-active":"#1848CC"},d="-apple-system, BlinkMacSystemFont, 'Trebuchet MS', Roboto, Ubuntu, sans-serif",l={host:null==window.location.host.match(/tradingview\.com|pyrrosinvestment\.com/i)?"https://s.tradingview.com":"https://www.tradingview.com",ideasHost:"https://www.tradingview.com",chatHost:"https://www.tradingview.com",widgetHost:"https://www.tradingview-widget.com",getHost:function(e){return e.useWidgetHost?l.widgetHost:l.host},embedStylesForCopyright:function(){var e=document.createElement("style");return e.innerHTML=".tradingview-widget-copyright {font-size: 13px !important; line-height: 32px !important; text-align: center !important; vertical-align: middle !important; font-family: "+d+" !important; color: "+a["color-gull-gray"]+" !important;} .tradingview-widget-copyright .blue-text {color: "+a["color-brand"]+" !important;} .tradingview-widget-copyright a {text-decoration: none !important; color: "+a["color-gull-gray"]+" !important;} .tradingview-widget-copyright a:visited {color: "+a["color-gull-gray"]+" !important;} .tradingview-widget-copyright a:hover .blue-text {color: "+a["color-brand-hover"]+" !important;} .tradingview-widget-copyright a:active .blue-text {color: "+a["color-brand-active"]+" !important;} .tradingview-widget-copyright a:visited .blue-text {color: "+a["color-brand"]+" !important;}",e},embedStylesForFullHeight:function(e,t,o){var i=t?"calc("+e+" - 32px)":e,n=document.querySelector("#"+o);n.parentElement.style.height=i,n.style.height="100%"},gId:function(){return"tradingview_"+(1048576*(1+Math.random())|0).toString(16).substring(1)},isPersentHeight:function(e){return"%"===e},getSuffix:function(e){var t=e.toString().match(/(%|px|em|ex)/);return t?t[0]:"px"},hasCopyright:function(e){var t=document.getElementById(e),o=t&&t.parentElement;return!!o&&!!o.querySelector(".tradingview-widget-copyright")},calculateWidgetHeight:function(e,t){var o=parseInt(e),i=this.getSuffix(e),n=this.isPersentHeight(i),r=t&&this.hasCopyright(t);return n&&t&&(this.embedStylesForFullHeight(o+i,r,t),r)?100+i:r?"calc("+o+i+" - 32px)":o+i},onready:function(e){window.addEventListener?window.addEventListener("DOMContentLoaded",e,!1):window.attachEvent("onload",e)},css:function(e){var t,o=document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css",i.styleSheet?i.styleSheet.cssText=e:(t=document.createTextNode(e),i.appendChild(t)),o.appendChild(i)},bindEvent:function(e,t,o){e.addEventListener?e.addEventListener(t,o,!1):e.attachEvent&&e.attachEvent("on"+t,o)},unbindEvent:function(e,t,o){e.removeEventListener?e.removeEventListener(t,o,!1):e.detachEvent&&e.detachEvent("on"+t,o)},cloneSimpleObject:function(e){if(null==e||"object"!=typeof e)return e;var t=e.constructor();for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o]);return t},isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e)},isMobileDevice:(e={Android:/Android/i.test(navigator.userAgent),BlackBerry:/BlackBerry/i.test(navigator.userAgent),iOS:/iPhone|iPad|iPod/i.test(navigator.userAgent),Opera:/Opera Mini/i.test(navigator.userAgent)},e.any=e.Android||e.BlackBerry||e.iOS||e.Opera,e),generateUtmForUrlParams:function(e){return"utm_source="+encodeURI(window.location.hostname)+"&utm_medium="+(l.hasCopyright(e.container)?"widget_new":"widget")+(e.type?"&utm_campaign="+e.type:"")+(e.type&&"chart"===e.type?"&utm_term="+encodeURIComponent(e.symbol):"")},WidgetAbstract:function(){},MiniWidget:function(e){this.id=l.gId(),this.options={whitelabel:e.whitelabel||"",width:l.WidgetAbstract.prototype.fixSize(e.width)||300,height:l.WidgetAbstract.prototype.fixSize(e.height)||400,symbols:e.symbols,tabs:e.tabs||"",symbols_description:e.symbols_description||"",customer:e.customer||"",container:e.container_id||"",greyText:e.greyText||"",large_chart_url:e.large_chart_url||"",large_chart_target:e.large_chart_target||"",gridLineColor:e.gridLineColor||"",fontColor:e.fontColor||"",underLineColor:e.underLineColor||"",underLineBottomColor:e.underLineBottomColor||"",trendLineColor:e.trendLineColor||"",timeAxisBackgroundColor:e.timeAxisBackgroundColor||"",activeTickerBackgroundColor:e.activeTickerBackgroundColor||"",noGraph:e.noGraph||!1,locale:e.locale,styleTickerActiveBg:e.styleTickerActiveBg||"",styleTabActiveBorderColor:e.styleTabActiveBorderColor||"",styleTickerBodyFontSize:e.styleTickerBodyFontSize||"",styleTickerBodyFontWeight:e.styleTickerBodyFontWeight||"",styleTickerHeadFontSize:e.styleTickerHeadFontSize||"",styleTickerHeadFontWeight:e.styleTickerHeadFontWeight||"",styleTickerChangeDownColor:e.styleTickerChangeDownColor||"",styleTickerChangeUpColor:e.styleTickerChangeUpColor||"",styleTickerLastDownBg:e.styleTickerLastDownBg||"",styleTickerLastUpBg:e.styleTickerLastUpBg||"",styleTickerSymbolColor:e.styleTickerSymbolColor||"",styleTickerSymbolHoverTextDecoration:e.styleTickerSymbolHoverTextDecoration||"",styleTickerActiveSymbolTextDecoration:e.styleTickerActiveSymbolTextDecoration||"",styleTabsActiveBorderColor:e.styleTabsActiveBorderColor||"",styleTabsNoBorder:e.styleTabsNoBorder||"",styleWidgetNoBorder:e.styleWidgetNoBorder||"",useWidgetHost:Boolean(e.useWidgetHost)},this.createWidget()},MediumWidget:function(e){this.id=l.gId();const t=l.calculateWidgetHeight(e.height||400,e.container_id);let o;switch(e.chartType){case"candlesticks":{const{chartType:t,upColor:i,downColor:n,borderUpColor:r,borderDownColor:s,wickUpColor:a,wickDownColor:d}=e;o={chartType:t,upColor:i,downColor:n,borderUpColor:r,borderDownColor:s,wickUpColor:a,wickDownColor:d};break}case"bars":{const{chartType:t,upColor:i,downColor:n}=e;o={chartType:t,upColor:i,downColor:n};break}case"line":{const{chartType:t,color:i,lineWidth:n}=e;o={chartType:t,color:i,lineWidth:n};break}case"area":default:{const{chartType:t="area",lineColor:i=e.trendLineColor||"",topColor:n=e.underLineColor||"",bottomColor:r=e.underLineBottomColor||"",lineWidth:s}=e;o={chartType:t,lineColor:i,topColor:n,bottomColor:r,lineWidth:s};break}}this.options={container:e.container_id||"",width:l.WidgetAbstract.prototype.fixSize(e.width)||"",height:l.WidgetAbstract.prototype.fixSize(t)||"",symbols:e.symbols,greyText:e.greyText||"",symbols_description:e.symbols_description||"",large_chart_url:e.large_chart_url||"",customer:e.customer||"",gridLineColor:e.gridLineColor||"",fontColor:e.fontColor||"",timeAxisBackgroundColor:e.timeAxisBackgroundColor||"",chartOnly:!!e.chartOnly,locale:e.locale,whitelabel:!!e.whitelabel||"",colorTheme:e.colorTheme,isTransparent:e.isTransparent,useWidgetHost:Boolean(e.useWidgetHost),showFloatingTooltip:e.showFloatingTooltip,valuesTracking:e.valuesTracking,showVolume:e.showVolume,volumeUpColor:e.volumeUpColor,volumeDownColor:e.volumeDownColor,hideDateRanges:e.hideDateRanges,scalePosition:e.scalePosition,scaleMode:e.scaleMode,fontFamily:e.fontFamily,noTimeScale:e.noTimeScale,...o},this.createWidget()},widget:function(e){this.id=e.id||l.gId();var t=l.getUrlParams(),o=e.tvwidgetsymbol||t.tvwidgetsymbol||t.symbol||e.symbol||"NASDAQ:AAPL",i=e.logo||"";i.src&&(i=i.src),i&&i.replace(".png","");var n=l.calculateWidgetHeight(e.height||500,e.container_id);this.options={whitelabel:e.whitelabel||"",width:e.width||800,height:n,symbol:o,interval:e.interval||"1",range:e.range||"",timezone:e.timezone||"",autosize:e.autosize,hide_top_toolbar:e.hide_top_toolbar,hide_side_toolbar:e.hide_side_toolbar,hide_legend:e.hide_legend,allow_symbol_change:e.allow_symbol_change,save_image:void 0===e.save_image||e.save_image,container:e.container_id||"",toolbar_bg:e.toolbar_bg||"f4f7f9",watchlist:e.watchlist||[],editablewatchlist:!!e.editablewatchlist,studies:e.studies||[],theme:e.theme||"",style:e.style||"",extended_hours:void 0===e.extended_hours?void 0:+e.extended_hours,details:!!e.details,calendar:!!e.calendar,hotlist:!!e.hotlist,hideideas:!!e.hideideas,hideideasbutton:!!e.hideideasbutton,widgetbar_width:+e.widgetbar_width||void 0,withdateranges:e.withdateranges||"",customer:e.customer||i||"",venue:e.venue,symbology:e.symbology,logo:i,show_popup_button:!!e.show_popup_button,popup_height:e.popup_height||"",popup_width:e.popup_width||"",studies_overrides:e.studies_overrides,overrides:e.overrides,enabled_features:e.enabled_features,disabled_features:e.disabled_features,publish_source:e.publish_source||"",enable_publishing:e.enable_publishing,whotrades:e.whotrades||void 0,locale:e.locale,referral_id:e.referral_id,no_referral_id:e.no_referral_id,fundamental:e.fundamental,percentage:e.percentage,hidevolume:e.hidevolume,padding:e.padding,greyText:e.greyText||"",horztouchdrag:e.horztouchdrag,verttouchdrag:e.verttouchdrag,useWidgetHost:Boolean(e.useWidgetHost)},e.cme&&(this.options.customer="cme"),isFinite(e.widgetbar_width)&&e.widgetbar_width>0&&(this.options.widgetbar_width=e.widgetbar_width),this._ready_handlers=[],this.create()},chart:function(e){this.id=l.gId(),this.options={width:e.width||640,height:e.height||500,container:e.container_id||"",realtime:e.realtime,chart:e.chart,locale:e.locale,type:"chart",autosize:e.autosize,mobileStatic:e.mobileStatic},this._ready_handlers=[],this.create()},stream:function(e){this.id=l.gId(),this.options={width:e.width||640,height:e.height||500,container:e.container_id||"",stream:e.stream,locale:e.locale,autosize:e.autosize},this.create()},EventsWidget:function(e){this.id=l.gId(),this.options={container:e.container_id||"",width:e.width||486,height:e.height||670,currency:e.currencyFilter||"",importance:e.importanceFilter||"",type:"economic-calendar"},this.createWidget(e)},IdeasStreamWidget:function(e){this.id=l.gId(),this.options={container:e.container_id||"",width:e.width||486,height:e.height||670,symbol:e.symbol||"",username:e.username||"",mode:e.mode||"",publishSource:e.publishSource||"",sort:e.sort||"trending",stream:e.stream,waitSymbol:e.waitSymbol,hideDescription:e.hideDescription,startingCount:e.startingCount,bgColor:e.bgColor||"",headerColor:e.headerColor||"",borderColor:e.borderColor||"",locale:e.locale,type:"ideas-stream",useWidgetHost:Boolean(e.useWidgetHost)},this._ready_handlers=[],this.createWidget()},IdeaWidget:function(e){this.id=l.gId(),this.options={container:e.container_id||"",width:e.width||486,height:e.height||670,idea:e.idea||"",chartUrl:e.chartUrl||"",whotrades:e.whotrades||void 0,locale:e.locale,type:"idea"},this.createWidget(e)},ChatWidgetEmbed:function(e){this.id=l.gId(),this.options={container:e.container_id||"",width:e.width||400,height:e.height||500,room:e.room||"",whotrades:e.whotrades||void 0,locale:e.locale,type:"chat-embed"},this.createWidget(e)}};l.WidgetAbstract.prototype={fixSize:function(e){return/^[0-9]+(\.|,[0-9])*$/.test(e)?e+"px":e},width:function(){return this.options.autosize?"100%":l.WidgetAbstract.prototype.fixSize(this.options.width)},height:function(){return this.options.autosize?"100%":l.WidgetAbstract.prototype.fixSize(this.options.height)},addWrapperFrame:function(e,t,o){var i=l.WidgetAbstract.prototype.height.call(this),n=l.WidgetAbstract.prototype.width.call(this);o=o||"transparent";return'
'+e+"
"+(t||"")+"
"},addFooterLogo:function(e,t){var o=(t||{}).greyText||"powered by",i=(t||{}).linkText||"tradingview.com",n=(t||{}).href||"https://www.tradingview.com/";return l.WidgetAbstract.prototype.addWrapperFrame.call(this,e,'
","#fff")}},l.ChatWidgetEmbed.prototype={createWidget:function(){var e=this.widgetCode();e=l.WidgetAbstract.prototype.addFooterLogo.call(this,e),h(e,this.options.container)},widgetCode:function(){var e=this.options.room?"#"+encodeURIComponent(this.options.room):"",t="&"+l.createUrlParams({whotrades:this.options.whotrades,locale:this.options.locale}),o=l.generateUtmForUrlParams(this.options,{type:"UserInfoWidget"});return''}},l.IdeaWidget.prototype={createWidget:function(){var e=this.widgetCode();h(e,this.options.container);var t=this,o=document.getElementById(this.id);this.postMessage=l.postMessageWrapper(o.contentWindow,this.id),this.postMessage.on("resize",(function(e){e.id===t.id&&(o.style.height=e.height+"px")}),!0)},widgetCode:function(){var e=l.createUrlParams({id:this.id,width:this.options.width,height:this.options.height,idea:this.options.idea,chart_url:this.options.chartUrl,whotrades:this.options.whotrades,locale:this.options.locale});this.options.type="idea";var t="&"+l.generateUtmForUrlParams(this.options),o=l.ideasHost+"/idea-popup/?"+e+t;return''},getSymbol:function(e){this.postMessage.on("symbolInfo",e)}},l.EventsWidget.prototype={createWidget:function(){var e=this.widgetCode();h(e,this.options.container)},widgetCode:function(){var e=l.createUrlParams({currency:this.options.currency,importance:this.options.importance});this.options.type="events";var t="&"+l.generateUtmForUrlParams(this.options);return''}},l.IdeasStreamWidget.prototype={createWidget:function(){var e=this.widgetCode();h(e,this.options.container);var t=this,o=document.getElementById(this.id);this.postMessage=l.postMessageWrapper(o.contentWindow,this.id),l.bindEvent(o,"load",(function(){t._ready=!0;for(var e=t._ready_handlers.length;e--;)t._ready_handlers[e].call(t)})),t.postMessage.on("resize",(function(e){if(e.id===t.id){var i=Math.max(e.height,450);o.style.height=i+"px"}}),!0)},widgetCode:function(){var e=this.options,t=l.createUrlParams({id:this.id,width:e.width,height:e.height,symbol:e.symbol,username:e.username,mode:e.mode,publish_source:e.publishSource,sort:e.sort,stream:e.stream,wait_symbol:e.waitSymbol,hide_desc:e.hideDescription,s_count:e.startingCount,bg_color:e.bgColor,h_color:e.headerColor,borderColor:e.borderColor,locale:e.locale,useWidgetHost:Boolean(e.useWidgetHost)}),o=l.generateUtmForUrlParams(this.options)+"&",i=l.getHost(e)+"/ideaswidgetembed/?"+o+t;return''},setSymbol:function(e){var t=document.getElementById(this.id);this.postMessage.post(t.contentWindow,"setSymbol",e)},ready:function(e){this._ready?e.call(this):this._ready_handlers.push(e)}},l.MiniWidget.prototype={createWidget:function(){var e=this.widgetCode(),t=this.options;if(!t.noLogoOverlay&&!t.whitelabel){var o=this.options.greyText||"Quotes by";e=l.WidgetAbstract.prototype.addFooterLogo.call(this,e,{greyText:o,linkText:"TradingView"})}h(e,t.container)},widgetCode:function(){var e="",t="",o="",i="/miniwidgetembed/",n=this.options.width?"&width="+encodeURIComponent(this.options.width):"",r=this.options.height?"&height="+encodeURIComponent(this.options.height):"",s=this.options.noGraph?"&noGraph="+encodeURIComponent(this.options.noGraph):"",a=this.options.locale?"&locale="+encodeURIComponent(this.options.locale):"",d=this.options.whitelabel?"&whitelabel=1":"";this.options.type="market-overview";for(var h="&"+l.generateUtmForUrlParams(this.options),c=["large_chart_url","large_chart_target","gridLineColor","fontColor","underLineColor","underLineBottomColor","trendLineColor","activeTickerBackgroundColor","timeAxisBackgroundColor","locale","styleTickerActiveBg","styleTabActiveBorderColor","styleTickerBodyFontSize","styleTickerBodyFontWeight","styleTickerHeadFontSize","styleTickerHeadFontWeight","styleTickerChangeDownColor","styleTickerChangeUpColor","styleTickerLastDownBg","styleTickerLastUpBg","styleTickerSymbolColor","styleTickerSymbolHoverTextDecoration","styleTickerActiveSymbolTextDecoration","styleTabsActiveBorderColor","styleTabsNoBorder","styleWidgetNoBorder"],p="",g=c.length-1;g>=0;g--){var m=c[g],u=this.options[m];p+=u?"&"+m+"="+encodeURIComponent(u):""}var y=function(e){for(var t=[],i=0;i'},remove:function(){var e=document.getElementById("tradingview_widget");e.parentNode.removeChild(e)}},l.MediumWidget.prototype={createWidget:function(){var e=this.widgetCode();h(e,this.options.container)},widgetCode:function(){var e="",t="symbols="+function(t){for(var o=[],i=0;i=0;d--){var h=s[d],c=this.options[h];a+=c?"&"+h+"="+encodeURIComponent(c):""}var p=this.options.chartOnly?"&chartOnly=1":"",g=this.options.whitelabel?"&whitelabel=1":"",m=this.options.isTransparent?"&isTransparent=1":"",u=this.options.showFloatingTooltip?"&showFloatingTooltip=1":"",y=this.options.showVolume?"&showVolume=1":"",w=this.options.hideDateRanges?"&hideDateRanges=1":"",b="/mediumwidgetembed/";this.options.customer&&(b="/"+this.options.customer+b);var f=l.getHost(this.options)+b+"?"+t+e+a+p+g+o+i+n+m+r+u+y+w;return''},remove:function(){var e=document.getElementById("tradingview_widget");e.parentNode.removeChild(e)}},l.widget.prototype={create:function(){this.options.type=this.options.fundamental?"fundamental":"chart";var e=this.render(),t=this;this.options.noLogoOverlay||(e=l.WidgetAbstract.prototype.addWrapperFrame.call(this,e)),h(e,this.options.container);var o=document.getElementById("tradingview-copyright");o&&o.parentElement&&o.parentElement.removeChild(o),this.iframe=document.getElementById(this.id),this.postMessage=l.postMessageWrapper(this.iframe.contentWindow,this.id),l.bindEvent(this.iframe,"load",(function(){t.postMessage.get("widgetReady",{},(function(){var e;for(t._ready=!0,e=t._ready_handlers.length;e--;)t._ready_handlers[e].call(t)}))})),t.postMessage.on("logoCreated",(function(e){if(e.left&&e.bottom&&e.width&&e.height&&e.href){t._logoOverlay&&(t._logoOverlay.parentNode.removeChild(t._logoOverlay),delete t._logoOverlay);var o=document.createElement("a");e.text&&(o.textContent=e.text,o.style.color="transparent"),o.style.position="absolute",o.style.display="inline-block",o.style.left=e.left,o.style.bottom=e.bottom,o.style.width=e.width,o.style.height=e.height,o.style.backgroundColor="transparent",o.style.pointerEvents="none",o.href=e.href,o.setAttribute("target","_blank"),t._logoOverlay=o,document.getElementById(t.id+"-wrapper").appendChild(o)}})),t.postMessage.on("setLogoOverlayVisibility",(function(e){t._logoOverlay&&e&&"boolean"==typeof e.visible&&(t._logoOverlay.style.display=e.visible?"inline-block":"none")})),t.postMessage.on("openChartInPopup",(function(e){for(var o=l.cloneSimpleObject(t.options),i=["symbol","interval"],n=i.length-1;n>=0;n--){var r=i[n],s=e[r];s&&(o[r]=s)}o.show_popup_button=!1;var a=t.options.popup_width||900,d=t.options.popup_height||600,h=(screen.width-a)/2,c=(screen.height-d)/2,p=window.open(t.generateUrl(o),"_blank","resizable=yes, top="+c+", left="+h+", width="+a+", height="+d);p&&(p.opener=null)}))},ready:function(e){this._ready?e.call(this):this._ready_handlers.push(e)},render:function(){var e=this.generateUrl();return''},generateUrl:function(e){var t;function o(t,o){return o=o||t,void 0===e[t]?"":"&"+encodeURIComponent(o)+"="+(e[t]?"1":"0")}function i(t,o,i){return i=i||t,e[t]?"&"+i+"="+o:""}function n(t,o,i){return i=i||{},"&"+t+"="+(e[t]?encodeURIComponent(JSON.stringify(o)):encodeURIComponent(JSON.stringify(i)))}return t="cme"===(e=e||this.options).customer?"/cmewidgetembed/":e.customer?"/"+e.customer+"/widgetembed/":"/widgetembed/",(e.enable_publishing?l.ideasHost:l.getHost(e))+t+"?frameElementId="+this.id+"&symbol="+encodeURIComponent(e.symbol)+"&interval="+encodeURIComponent(e.interval)+(e.range?"&range="+encodeURIComponent(e.range):"")+(e.whitelabel?"&whitelabel=1":"")+(e.hide_top_toolbar?"&hidetoptoolbar=1":"")+(e.hide_legend?"&hidelegend=1":"")+o("hide_side_toolbar","hidesidetoolbar")+o("allow_symbol_change","symboledit")+o("save_image","saveimage")+"&toolbarbg="+e.toolbar_bg.replace("#","")+(e.watchlist&&e.watchlist.length&&e.watchlist.join?"&watchlist="+encodeURIComponent(e.watchlist.join("")):"")+i("editablewatchlist","1")+i("details","1")+i("calendar","1")+i("hotlist","1")+(e.studies&&l.isArray(e.studies)?"string"==typeof e.studies[0]?i("studies",encodeURIComponent(e.studies.join(""))):n("studies",e.studies):"")+o("horztouchdrag")+o("verttouchdrag")+i("widgetbar_width",e.widgetbar_width,"widgetbarwidth")+i("hideideas","1")+i("theme",encodeURIComponent(e.theme))+i("style",encodeURIComponent(e.style))+(void 0===e.extended_hours?"":"&extended_hours="+e.extended_hours)+i("timezone",encodeURIComponent(e.timezone))+i("hideideasbutton","1")+i("withdateranges","1")+i("hidevolume","1")+(void 0===e.padding?"":"&padding="+e.padding)+i("show_popup_button","1","showpopupbutton")+n("studies_overrides",e.studies_overrides,{})+n("overrides",e.overrides,{})+n("enabled_features",e.enabled_features,[])+n("disabled_features",e.disabled_features,[])+(e.show_popup_button?"&showpopupbutton=1":"")+(e.publish_source?"&publishsource="+encodeURIComponent(e.publish_source):"")+(e.enable_publishing?"&enablepublishing="+encodeURIComponent(e.enable_publishing):"")+(e.venue?"&venue="+encodeURIComponent(e.venue):"")+(e.symbology?"&symbology="+encodeURIComponent(e.symbology):"")+(e.whotrades?"&whotrades="+encodeURIComponent(e.whotrades):"")+(e.locale?"&locale="+e.locale:"")+(e.referral_id?"&referral_id="+e.referral_id:"")+(e.no_referral_id?"&no_referral_id=1":"")+(e.fundamental?"&fundamental="+encodeURIComponent(e.fundamental):"")+(e.percentage?"&percentage="+encodeURIComponent(e.percentage):"")+"&utm_source="+encodeURI(window.location.hostname)+"&utm_medium="+(l.hasCopyright(e.container)?"widget_new":"widget")+(e.type?"&utm_campaign="+e.type:"")+(e.type&&"chart"===e.type?"&utm_term="+encodeURIComponent(e.symbol):"")},image:function(e){this.postMessage.get("imageURL",{},(function(t){var o=l.host+"/x/"+t+"/";e(o)}))},subscribeToQuote:function(e){var t=document.getElementById(this.id);this.postMessage.post(t.contentWindow,"quoteSubscribe"),this.postMessage.on("quoteUpdate",e)},getSymbolInfo:function(e){this.postMessage.get("symbolInfo",{},e)},remove:function(){var e=document.getElementById(this.id);e.parentNode.removeChild(e)},reload:function(){var e=document.getElementById(this.id),t=e.parentNode;t.removeChild(e),t.innerHTML=this.render()}},l.chart.prototype={create:function(){this.isMobile=l.isMobileDevice.any;var e,t=this.render(),o=this;l.chartCssAttached||(l.css(this.renderCss()),l.chartCssAttached=!0),h(t,this.options.container),e=document.getElementById(this.id),l.bindEvent(e,"load",(function(){var e;for(o._ready=!0,e=o._ready_handlers.length;e--;)o._ready_handlers[e].call(o)})),l.onready((function(){var t=!1;if(document.querySelector&&document.querySelector('a[href$="/v/'+o.options.chart+'/"]')&&(t=!0),!t)for(var i=document.getElementsByTagName("a"),n=new RegExp("/v/"+o.options.chart+"/$"),r=new RegExp("/chart/([0-9a-zA-Z:+*-/()]+)/"+o.options.chart),s=0;s'},toggleFullscreen:function(e){var t=document.getElementById(this.id);e?(t.style.position="fixed",t.style.width="100vw",t.style.maxWidth="100%",t.style.height="100vh",t.style.maxHeight="100%",t.style.left="0px",t.style.top="0px",t.style.zIndex="1000000",t.style.backgroundColor="#fff"):(t.style.position="static",this.options.autosize?(t.style.width="100%",t.style.height="100%"):(t.style.width=this.options.width+"px",t.style.height=this.options.height+"px"),t.style.maxWidth="none",t.style.maxHeight="none",t.style.zIndex="auto",t.style.backgroundColor="transparent")},getSymbolInfo:function(e){this.postMessage.get("symbolInfo",{},e)}},l.stream.prototype={create:function(){this.isMobile=l.isMobileDevice.any;var e=this.render();h(e,this.options.container)},render:function(){var e="?"+(this.options.locale?"&locale="+encodeURIComponent(this.options.locale):"");return this.options.type="chart",'
'}},l.postMessageWrapper=(o={},i={},n={},r=0,s=0,window.addEventListener&&window.addEventListener("message",(function(e){var n;try{n=JSON.parse(e.data)}catch(e){return}if(n&&n.provider&&"TradingView"===n.provider)if(n.source=e.source,"get"===n.type){if(!i[n.name])return;i[n.name].forEach((function(e){"function"==typeof e&&e.call(n,n.data,(function(e){var o={id:n.id,type:"on",name:n.name,client_id:n.client_id,data:e,provider:"TradingView"};t.postMessage(JSON.stringify(o),"*")}))}))}else if("on"===n.type)o[n.client_id]&&o[n.client_id][n.id]&&(o[n.client_id][n.id].call(n,n.data),delete o[n.client_id][n.id]);else if("post"===n.type){if(!i[n.name])return;i[n.name].forEach((function(e){"function"==typeof e&&e.call(n,n.data,(function(){}))}))}})),function(e,a){return o[a]={},n[a]=e,t=e,{on:function(e,t,o){i[e]&&o||(i[e]=[]),i[e].push(t)},off:function(e,t){if(!i[e])return!1;var o=i[e].indexOf(t);o>-1&&i[e].splice(o,1)},get:function(e,t,i){var s={id:r++,type:"get",name:e,client_id:a,data:t,provider:"TradingView"};o[a][s.id]=i,n[a].postMessage(JSON.stringify(s),"*")},post:function(e,t,o){var i={id:s++,type:"post",name:t,data:o,provider:"TradingView"};e&&"function"==typeof e.postMessage&&e.postMessage(JSON.stringify(i),"*")}}}),l.getUrlParams=function(){for(var e=/\+/g,t=/([^&=]+)=?([^&]*)/g,o=window.location.search.substring(1),i=t.exec(o),n=function(t){return decodeURIComponent(t.replace(e," "))},r={};i;)r[n(i[1])]=n(i[2]),i=t.exec(o);return r},l.createUrlParams=function(e){var t=[];for(var o in e)e.hasOwnProperty(o)&&null!=e[o]&&t.push(encodeURIComponent(o)+"="+encodeURIComponent(e[o]));return t.join("&")};var h=function(e,t){var o=document.getElementById(t);if(o){o.innerHTML=e;var i=o.parentElement&&o.parentElement.querySelector(".tradingview-widget-copyright");i&&(i.style.width=o.querySelector("iframe").style.width)}else document.write(e);document.body.appendChild(l.embedStylesForCopyright())},c=function(e,t){for(var o in t)"object"==typeof t[o]&&e.hasOwnProperty(o)?c(e[o],t[o]):e[o]=t[o];return e};window.TradingView?c(window.TradingView,l):window.TradingView=l}}(); \ No newline at end of file diff --git a/basicswap/static/js/main.js b/basicswap/static/js/main.js new file mode 100644 index 0000000..07ee913 --- /dev/null +++ b/basicswap/static/js/main.js @@ -0,0 +1,40 @@ +// Burger menus +document.addEventListener('DOMContentLoaded', function() { + // open + const burger = document.querySelectorAll('.navbar-burger'); + const menu = document.querySelectorAll('.navbar-menu'); + + if (burger.length && menu.length) { + for (var i = 0; i < burger.length; i++) { + burger[i].addEventListener('click', function() { + for (var j = 0; j < menu.length; j++) { + menu[j].classList.toggle('hidden'); + } + }); + } + } + + // close + const close = document.querySelectorAll('.navbar-close'); + const backdrop = document.querySelectorAll('.navbar-backdrop'); + + if (close.length) { + for (var i = 0; i < close.length; i++) { + close[i].addEventListener('click', function() { + for (var j = 0; j < menu.length; j++) { + menu[j].classList.toggle('hidden'); + } + }); + } + } + + if (backdrop.length) { + for (var i = 0; i < backdrop.length; i++) { + backdrop[i].addEventListener('click', function() { + for (var j = 0; j < menu.length; j++) { + menu[j].classList.toggle('hidden'); + } + }); + } + } +}); diff --git a/basicswap/templates/active.html b/basicswap/templates/active.html index e7f0dd1..45ce7bf 100644 --- a/basicswap/templates/active.html +++ b/basicswap/templates/active.html @@ -1,16 +1,97 @@ {% include 'header.html' %} +
-

Active Swaps

-{% if refresh %} -

Page Refresh: {{ refresh }} seconds

-{% endif %} +
+
+
+ +
+
+
- - -{% for s in active_swaps %} - -{% endfor %} -
Bid IDOffer IDBid StatusITX StatusPTX Status
{{ s[0] }}{{ s[1] }}{{ s[2] }}{{ s[3] }}{{ s[4] }}
+
+
+
+ + + +
+
+

Swaps in Progress / Active Swaps

+

+ {% if refresh %} + Page Refresh {{ refresh }} seconds + {% endif %} +

+
+
+ +
+
+
+
+
-

home

- +
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + {% for s in active_swaps %} + + + + + + + + {% endfor %} + +
Bid ID Offer ID Bid Status ITX Status PTX Status
{{ s[0] }}{{ s[1] }}{{ s[2] }}{{ s[3] }}{{ s[4] }}
+
+
+
+
+
+
+ +
+ +
+{% include 'footer.html' %} + + + diff --git a/basicswap/templates/automation_strategies.html b/basicswap/templates/automation_strategies.html index 769a069..1da3106 100644 --- a/basicswap/templates/automation_strategies.html +++ b/basicswap/templates/automation_strategies.html @@ -1,38 +1,237 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

Automation Strategies

-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Automation Strategies

+

+
+ +
+
+
+
-
- + {% for m in messages %} - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
- - -
Sort By - - -
Page: {{ filters.page_no }}
- - -
+ {% endfor %} -

Create New Strategy

+ {% for m in err_messages %} - - -{% for s in strategies %} - -{% endfor %} -
NameType
{{ s[1] }}{{ s[2] }}
+
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
-

home

- + {% endfor %} + +
+
+
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + +
Filter
+ Sort by: + + + + +
+
+
+ +
+
+
+ +
+ +
+ +
+
+

Page: {{ filters.page_no }}

+
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+
+ + + + + + +
+
+ + + + + + + + + + + + {% for s in strategies %} + + + + + {% endfor %} + +
NameType
+ {{ s[1] }} + {{ s[2] }} +
+
+
+ +
+
+
+
+ +
+
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/automation_strategy.html b/basicswap/templates/automation_strategy.html index 59d9ff2..28f0875 100644 --- a/basicswap/templates/automation_strategy.html +++ b/basicswap/templates/automation_strategy.html @@ -1,27 +1,186 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

Automation Strategy {{ strategy_id }}

+
+
+
+ + + +
+
+

Automation Strategy {{ strategy_id }}

+
+
+
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} + {% for m in messages %} - - - - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
- -
Label{{ strategy.label }}
Type{{ strategy.type }}
Only known identities{{ strategy.only_known_identities }}
Data - -
Notes - -
+ {% endfor %} + {% for m in err_messages %} -

home

- +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + +
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionType
Label{{ strategy.label }}
Type{{ strategy.type }}
Only known identities{{ strategy.only_known_identities }}
Data + +
Notes + +
+ +
+
+ +
+
+
+ + + +
+
+
+ +
+
+
+
+ +
+ +
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/automation_strategy_new.html b/basicswap/templates/automation_strategy_new.html index a37142c..47caa1b 100644 --- a/basicswap/templates/automation_strategy_new.html +++ b/basicswap/templates/automation_strategy_new.html @@ -1,11 +1,127 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

New Automation Strategy

-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

New Automation Strategy (todo)

+
+
+
+
+
-

TODO

+ {% for m in messages %} -

home

- +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
+ + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + +
+
+
+
+
+ +
+
+
+
+ +
+
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/bid.html b/basicswap/templates/bid.html index 125e2e1..a3dd521 100644 --- a/basicswap/templates/bid.html +++ b/basicswap/templates/bid.html @@ -1,126 +1,461 @@ {% include 'header.html' %} -

Bid {{ bid_id }}

-{% if refresh %} -

Page Refresh: {{ refresh }} second

-{% else %} -

refresh

-{% endif %} +
+
+
+
+ +
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Bid + {% if debug_mode == true %} + (Debug: bid template) + {% endif %} +

+

Bid ID: {{ bid_id }}

+
+
+ {% if refresh %} + + {% else %} + + {% endif %} +
+
+
+
+
- -{% if data.was_sent == 'True' %} - -{% else %} - -{% endif %} - - - - - - - - - - - - - - - - -{% if data.show_txns %} - - - - -{% endif %} -
Swap{{ data.amt_to }} {{ data.ticker_to }} for {{ data.amt_from }} {{ data.ticker_from }}
Swap{{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }}
Bid Rate{{ data.bid_rate }}
Bid State{{ data.bid_state }}
State Description {{ data.state_description }}
ITX State{{ data.itx_state }}
PTX State{{ data.ptx_state }}
Offer{{ data.offer_id }}
Address From{{ data.addr_from }} {{ data.addr_from_label }}
Proof of Funds{{ data.proof_address }}
Created At{{ data.created_at }}
Expired At{{ data.expired_at }}
Sent{{ data.was_sent }}
Received{{ data.was_received }}
Initiate Tx{{ data.initiate_tx }}
Initiate Conf{{ data.initiate_conf }}
Participate Tx{{ data.participate_tx }}
Participate Conf{{ data.participate_conf }}
Initiate Tx Refund{{ data.initiate_tx_refund }}
Participate Tx Refund{{ data.participate_tx_refund }}
Initiate Tx Spend Tx{{ data.initiate_tx_spend }}
Participate Tx Spend Tx{{ data.participate_tx_spend }}
+ {% for m in messages %} +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-
-{% if edit_bid %} -

Edit Bid

- - -{% if data.debug_ui == true %} - -{% endif %} -
Change Bid State -
Debug Option
- - -{% else %} -{% if data.was_received == 'True' %} -
-{% endif %} -{% if data.can_abandon == true %} - -{% endif %} -{% if data.show_txns %} - -{% else %} - -{% endif %} - -{% endif %} -
-{% if data.show_bidder_seq_diagram %} - -{% else %} - -{% endif %} -{% if data.show_offerer_seq_diagram %} - -{% else %} - -{% endif %} - -
+ {% endfor %} -{% if data.show_bidder_seq_diagram %} - -{% endif %} + {% for m in err_messages %} -{% if data.show_offerer_seq_diagram %} - -{% endif %} +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} -

Old States

- - -{% for s in old_states %} - -{% endfor %} -
StateSet At
{{ s[1] }}{{ s[0] | formatts }}
-

Events

- - -{% for e in data.events %} - -{% endfor %} -
AtEvent
{{ e.at | formatts }}{{ e.desc }}
+
+
+
+
+
-

home

- - + + +
+
+ + + + + + + + + + + + + + {% if data.was_sent == 'True' %} + + + + + + + {% else %} + + + + + + {% endif %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {% if data.show_txns %} + + + + + + + + + + + + + + + + + {% endif %} +
ItemData
Swap{{ data.amt_to }} {{ data.ticker_to }} for {{ data.amt_from }} {{ data.ticker_from }}
Swap{{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }}
Bid Rate{{ data.bid_rate }}
Bid State{{ data.bid_state }}
State Description {{ data.state_description }}
ITX State{{ data.itx_state }}
PTX State{{ data.ptx_state }}
Offer{{ data.offer_id }}
Address From{{ data.addr_from }} {{ data.addr_from_label }}
Proof of Funds{{ data.proof_address }}
Created At{{ data.created_at }}
Expired At{{ data.expired_at }}
Sent{{ data.was_sent }}
Received{{ data.was_received }}
Initiate Tx{{ data.initiate_tx }}
Initiate Conf{{ data.initiate_conf }}
Participate Tx{{ data.participate_tx }}
Participate Conf{{ data.participate_conf }}
Initiate Tx Refund{{ data.initiate_tx_refund }}
Participate Tx Refund{{ data.participate_tx_refund }}
Initiate Tx Spend Tx{{ data.initiate_tx_spend }}
Participate Tx Spend Tx{{ data.participate_tx_spend }}
+ +
+
+ +
+
+
+

Old states

+
+
+
+ +
+
+ + + + + + + + + + + + + {% for s in old_states %} + + + + + {% endfor %} +
Old StatesSet at Time
{{ s[1] }}{{ s[0] | formatts }}
+ +
+
+ + + {% if data.events %} + +
+
+
+

Events

+
+
+
+ + +
+
+ + + + + + + + + + + + {% for e in data.events %} + + + + + {% endfor %} +
TimeEvents
{{ e.at | formatts }}{{ e.desc }}
+ +
+
+ {% else %} + {% endif %} + +
+ +
+
+
+ + {% if edit_bid %} + + + + + + + + {% if data.debug_ui == true %} + + + + + {% endif %} + +
Change Bid State: + +
Debug Option: + +
+ + +
+ +
+ + + + +
+ +
+ + {% else %} + + {% if data.can_abandon == true %} + +
+ +
+ + {% endif %} + + {% if data.show_txns %} + +
+ +
+ + {% else %} + +
+ +
+ + {% endif %} + +
+ +
+ + {% endif %} + + {% if data.was_received == 'True' %} + +
+ +
+ + {% endif %} + +
+
+
+ + {% if data.show_bidder_seq_diagram %} + + {% else %} + + + {% endif %} + + {% if data.show_offerer_seq_diagram %} + + {% else %} + + + {% endif %} + + +
+ + {% if data.show_bidder_seq_diagram %} + + {% endif %} + + {% if data.show_offerer_seq_diagram %} + + {% endif %} + +
+
+
+
+ +
+ + + +
+{% include 'footer.html' %} + + + diff --git a/basicswap/templates/bid_xmr.html b/basicswap/templates/bid_xmr.html index ebeb04b..b2f93e8 100644 --- a/basicswap/templates/bid_xmr.html +++ b/basicswap/templates/bid_xmr.html @@ -1,184 +1,642 @@ {% include 'header.html' %} -

Bid {{ bid_id }}

-{% if refresh %} -

Page Refresh: {{ refresh }} second

-{% else %} -

refresh

-{% endif %} +
+
+
+
+ +
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Bid + {% if debug_mode == true %} + (Debug: bid_xmr template) + {% endif %} +

+

Bid ID: {{ bid_id }}

+
+
+ {% if refresh %} + + {% else %} + + {% endif %} +
+
+
+
+
- -{% if data.was_sent == 'True' %} - -{% else %} - -{% endif %} - - - - - - - - - - - -{% if data.coin_a_lock_refund_tx_est_final != 'None' %} - -{% if data.coin_a_lock_refund_swipe_tx_est_final != 'None' %} - -{% endif %} - -{% endif %} + {% for m in messages %} -
Swap{{ data.amt_to }} {{ data.ticker_to }} for {{ data.amt_from }} {{ data.ticker_from }}
Swap{{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }}
Bid Rate{{ data.bid_rate }}
Coin From{{ data.coin_from }}
Coin To{{ data.coin_to }}
Bid State{{ data.bid_state }}
State Description {{ data.state_description }}
Offer{{ data.offer_id }}
Address From{{ data.addr_from }} {{ data.addr_from_label }}
Created At{{ data.created_at }}
Expired At{{ data.expired_at }}
Sent{{ data.was_sent }}
Received{{ data.was_received }}
{{ data.ticker_from }} lock refund tx valid at{{ data.coin_a_lock_refund_tx_est_final | formatts }}
{{ data.ticker_from }} lock refund tx swipeable at{{ data.coin_a_lock_refund_swipe_tx_est_final | formatts }}
{{ data.ticker_from }} chain median time{{ data.coin_a_last_median_time | formatts }}
+
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-
-{% if edit_bid %} -

Edit Bid

- - -{% if data.debug_ui == true %} - - -{% endif %} -
Change Bid State -
Debug Option
Sweep No-Script TX
- - -{% else %} -{% if data.was_received == 'True' %} -
-{% endif %} -{% if data.can_abandon == true %} - -{% endif %} -{% if data.show_txns %} - -{% else %} - -{% endif %} - -{% endif %} -
-{% if data.show_bidder_seq_diagram %} - -{% else %} - -{% endif %} -{% if data.show_offerer_seq_diagram %} - -{% else %} - -{% endif %} - + {% endfor %} -{% if data.show_txns %} -{% if data.xmr_b_shared_address %} -

Shared Address: {{ data.xmr_b_shared_address }}

-{% endif %} -{% if data.xmr_b_shared_viewkey %} -

Shared View Key: {{ data.xmr_b_shared_viewkey }}

-{% endif %} -{% if data.xmr_b_half_privatekey %} -

Key Half: {{ data.xmr_b_half_privatekey }}

-{% endif %} -

Transactions

- - -{% for tx in data.txns %} - -{% endfor %} -
Tx TypeTx IDBlocks Deep
{{ tx.type }}{{ tx.txid }}{{ tx.confirms }}
- - -
View Transaction -
- - + {% for m in err_messages %} -{% if data.view_tx_hex %} -

{{ data.view_tx_hex }}

- -{% endif %} +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
-{% if data.lock_transfers %} -

-
- -

-{% endif %} -{% endif %} -
+ {% endfor %} -{% if data.show_bidder_seq_diagram %} - -{% endif %} +
+
+
+
+
-{% if data.show_offerer_seq_diagram %} - -{% endif %} +
+
-{% if data.chain_a_lock_tx_inputs %} -
Chain A Lock TX Inputs:
- - -{% for txi in data.chain_a_lock_tx_inputs %} - -{% endfor %} -
txidvoutlocked
{{ txi.txid }}{{ txi.vout }}{% if txi.islocked %} true {% else %} false {% endif %}
-{% endif %} + + + + + + + + + + + {% if data.was_sent == 'True' %} + + + + + {% else %} + + + + + {% endif %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {% if data.coin_a_lock_refund_tx_est_final != 'None' %} + + + + + {% if data.coin_a_lock_refund_swipe_tx_est_final != 'None' %} + + + + + {% endif %} + + + + + {% endif %} +
ItemData
Swap{{ data.amt_to }} {{ data.ticker_to }} for {{ data.amt_from }} {{ data.ticker_from }}
Swap{{ data.amt_from }} {{ data.ticker_from }} for {{ data.amt_to }} {{ data.ticker_to }}
Bid Rate{{ data.bid_rate }}
Coin From{{ data.coin_from }}
Coin To{{ data.coin_to }}
Bid State{{ data.bid_state }}
State Description {{ data.state_description }}
Offer{{ data.offer_id }}
Address From{{ data.addr_from }} {{ data.addr_from_label }}
Created At{{ data.created_at }}
Expired At{{ data.expired_at }}
Sent{{ data.was_sent }}
Received{{ data.was_received }}
{{ data.ticker_from }} lock refund tx valid at{{ data.coin_a_lock_refund_tx_est_final | formatts }}
{{ data.ticker_from }} lock refund tx swipeable at{{ data.coin_a_lock_refund_swipe_tx_est_final | formatts }}
{{ data.ticker_from }} chain median time{{ data.coin_a_last_median_time | formatts }}
+ +
+
+ +
+
+
+

Old states

+
+
+
+ +
+
-

Old States

- - -{% for s in old_states %} - -{% endfor %} -
StateSet At
{{ s[1] }}{{ s[0] | formatts }}
+ -

Events

-
- -{% for e in data.events %} - -{% endfor %} -
AtEvent
{{ e.at | formatts }}{{ e.desc }}
+ + + Old States + Set at Time -

home

- - + + + + {% for s in old_states %} + + {{ s[1] }} + {{ s[0] | formatts }} + + {% endfor %} + + +
+
+ + {% if data.events %} + +
+
+
+

Events

+
+
+
+ +
+
+ + + + + + + + + + + + {% for e in data.events %} + {{ e.at | formatts }} + + + {% endfor %} +
TimeEvents
{{ e.desc }}
+ +
+
+ {% else %} + {% endif %} + + +
+ + {% if data.show_txns %} + {% if data.xmr_b_shared_address %} + +
+
+
+

View keys/Shared Address:

+
+
+
+ +
+
+ + + + + + + + + + + +
TypeOutput
Shared Address:{{ data.xmr_b_shared_address }}
+
+
+ + {% endif %} + {% if data.xmr_b_shared_viewkey %} + +
+
+
+

View keys/Shared Address:

+
+
+
+ +
+
+ + + + + + + + + + + +
TypeOutput
Shared View Key:{{ data.xmr_b_shared_viewkey }}
+
+
+ + {% endif %} + {% if data.xmr_b_half_privatekey %} + +
+
+
+

View keys/Shared Address:

+
+
+
+ +
+
+ + + + + + + + + + + +
TypeOutput
Key Half:{{ data.xmr_b_half_privatekey }}
+
+
+ {% endif %} + + +
+
+
+

Transactions

+
+
+
+ +
+
+ + + + + + + + + + + + {% for tx in data.txns %} + + + + + + {% endfor %} +
Tx TypeTx IDBlocks Deep
{{ tx.type }}{{ tx.txid }}{{ tx.confirms }}
+ +
+
+ +
+
+
+ + + + + + +
View Transaction: + + +
+ +
+ +
+ +
+ +
+ +
+
+
+ + {% if data.view_tx_hex %} + + + + + {% endif %} + + {% if data.lock_transfers %} + + + + + {% endif %} + {% endif %} + + {% if data.show_bidder_seq_diagram %} + + {% endif %} + + {% if data.show_offerer_seq_diagram %} + + {% endif %} + + {% if data.chain_a_lock_tx_inputs %} +
+
+
+

Chain A Lock TX Inputs:

+
+
+
+ +
+
+ + + + + + + + + + + + + {% for txi in data.chain_a_lock_tx_inputs %} + + + + + + {% endfor %} + +
txidvoutlocked
{{ txi.txid }}{{ txi.vout }}{% if txi.islocked %} true {% else %} false {% endif %}
+ +
+
+ + {% endif %} + +
+
+
+ + {% if edit_bid %} + + + + + + + + {% if data.debug_ui == true %} + + + + + + + + + {% endif %} +
Change Bid State: + +
Debug Option + +
Sweep No-Script TX
+ +
+ +
+ +
+ +
+ + {% else %} + + {% if data.was_received == 'True' %} + +
+ +
+ + {% endif %} + {% if data.can_abandon == true %} + +
+ +
+ + {% endif %} + {% if data.show_txns %} + +
+ +
+ + {% else %} + +
+ +
+ + {% endif %} + +
+ +
+ + {% endif %} + + {% if data.show_bidder_seq_diagram %} + + {% else %} + + {% endif %} + {% if data.show_offerer_seq_diagram %} + + {% else %} + + {% endif %} + +
+
+
+ + + + +
+
+
+
+ + + + + +
+{% include 'footer.html' %} + + + diff --git a/basicswap/templates/bids.html b/basicswap/templates/bids.html index 2b6bc36..cfd4968 100644 --- a/basicswap/templates/bids.html +++ b/basicswap/templates/bids.html @@ -1,57 +1,267 @@ {% include 'header.html' %} -

{{ page_type }} Bids

-{% if refresh %} -

Page Refresh: {{ refresh }} seconds

-{% endif %} -{% for m in messages %} -

{{ m }}

-{% endfor %} +
-
- +
+ +
- - +
+
+
+ + + +
+
+

{{ page_type_available }} {{ page_type_received }} {{ page_type_sent }} Bids

+

{{ page_type_available_description }} {{ page_type_received_description }} {{ page_type_sent_description }}

+
+
+
+
+
- - -
Sort By - - -
State - -
Include Expired - -
Page: {{ filters.page_no }}
- - -
+ + {% if refresh %} +

Page Refresh: {{ refresh }} seconds

{% endif %} {% for m in messages %} +

{{ m }}

+ {% endfor %} + - - -{% for b in bids %} - - - - - - -{% endfor %} -
AtBid IDOffer IDBid FromBid StatusITX StatusPTX Status
{{ b[0] }}{{ b[1] }}{{ b[2] }}{{ b[6] }}{{ b[3] }}{{ b[4] }}{{ b[5] }}
+
+
+
+
+
-

home

- +
+ +
+
+
+
+ +
+
+

Sort By:

+
+
+ +
+
+ + + + + +
+
+ +
+
+ + + + + +
+
+ +
+
+

State:

+
+
+ +
+
+ + + + + +
+
+ +
+
+

Include Expired:

+
+
+ +
+
+ + + + + +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ + +
+
+ + + + + + + + + + + + + + + + {% for b in bids %} + + + + + + + + + + + {% endfor %} + +
Time At Bid ID Offer ID Bid From Bid Status ITX Status PTX Status
+ + + + + + +
+
{{ b[0] }}
+
+
{{ b[1]|truncate(20, True) }}{{ b[2]|truncate(20, True) }}{{ b[6] }}{{ b[3] }}{{ b[4] }}{{ b[5] }}
+ + + + + +
+
+ +
+
+ +
+ +
+ +
+ +
+
+

Page: {{ filters.page_no }}

+
+
+ +
+ +
+ +
+ +
+
+ +
+ +
+
+
+
+ +
+ +
+{% include 'footer.html' %} + + diff --git a/basicswap/templates/debug.html b/basicswap/templates/debug.html index 0ab8ca9..859f3e3 100644 --- a/basicswap/templates/debug.html +++ b/basicswap/templates/debug.html @@ -1,22 +1,158 @@ {% include 'header.html' %} +
-

Debug

-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ +
+
+
+ +
+
+
+ + + +
+
+

Debug

+

+
+
+
+
+
+ + {% for m in messages %} + +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
+ + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} +
+
+
+
+
+ +
+
+ + + + + + + + + -

- - -

+ + + + + +
NameInput
Reinitialise XMR wallet
+
+
+
+
+
+
+ + -

home

- +
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/error.html b/basicswap/templates/error.html index 7c328a2..3760de7 100644 --- a/basicswap/templates/error.html +++ b/basicswap/templates/error.html @@ -1,12 +1,11 @@ - {{ title }}

{{ title_str }}

-

Error: {{ message_str }}

+

Info: {{ message_str }}

home

diff --git a/basicswap/templates/explorers.html b/basicswap/templates/explorers.html index b9a014e..67521de 100644 --- a/basicswap/templates/explorers.html +++ b/basicswap/templates/explorers.html @@ -1,33 +1,218 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

Explorers

-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Explorers

+

+
+
+
+
+
-
-

-
-
-
- - -

-
+ {% for m in messages %} -{% if result %} - -{% endif %} +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-

home

- + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + +
+
+
+
+
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + +
SelectAction
+ + + + + +
+ Arguments: + + +
+
+
+ +
+
+
+ +
+ +
+ +
+
+
+ + + + {% if result %} + +
+
+ + + + + + + + + + + + + +
Explorer output:
+ +
+
+
+ {% endif %} + + + +
+
+
+
+ +
+
+ {% include 'footer.html' %} + + + + diff --git a/basicswap/templates/footer.html b/basicswap/templates/footer.html new file mode 100644 index 0000000..3accc20 --- /dev/null +++ b/basicswap/templates/footer.html @@ -0,0 +1,57 @@ +
+
+
+
+ + + +

Swap cryptocurrencies in a distributed trading environment with no restrictions and no fees.

+
+ +
+
+
+ +
+
+
+
+
+
+
+ +
+
+ +

© 2022~ BasicSwap

+

version {{ version }}

+ +

GUI version 0.1

+ +

Made with

+ + by TV and CRZ +
+ +
+
+
+
+ + +
+
+
+
+
diff --git a/basicswap/templates/header.html b/basicswap/templates/header.html index 3c5d733..d4eeae8 100644 --- a/basicswap/templates/header.html +++ b/basicswap/templates/header.html @@ -1,55 +1,678 @@ - + + + - -{% if refresh %} - -{% endif %} - - -{{ title }} + + {% if refresh %} + + {% endif %} + + + + + + {{ title }} + -{% if h2 %} -

{{ h2 }}

-{% endif %} -{% if debug_mode == true %} -

Debug mode: Active

-{% endif %} -{% if debug_ui_mode == true %} -

Debug UI mode: Active

-{% endif %} -{% if use_tor_proxy == true %} -

Tor mode: Active{% if tor_established == true %}, Connected{% endif %}

-{% endif %} +
+ + + + + +
+ + {% if ws_url %} + + {% endif %} diff --git a/basicswap/templates/identity.html b/basicswap/templates/identity.html index a5ee3a0..0a7f4c7 100644 --- a/basicswap/templates/identity.html +++ b/basicswap/templates/identity.html @@ -1,38 +1,184 @@ {% include 'header.html' %} -

Identity {{ data.identity_address }}

+
+
+
+
+ +
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Identity

+

Address: {{ data.identity_address }}

+
+
+
+
+
-
+ {% for m in messages %} - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-{% if data.show_edit_form %} - -{% else %} - -{% endif %} + {% endfor %} - - - - - - -
Label
Label{{ data.label }}
Successful Sent Bids{{ data.num_sent_bids_successful }}
Successful Received Bids{{ data.num_recv_bids_successful }}
Rejected Sent Bids{{ data.num_sent_bids_rejected }}
Rejected Received Bids{{ data.num_recv_bids_rejected }}
Failed Sent Bids{{ data.num_sent_bids_failed }}
Failed Received Bids{{ data.num_recv_bids_failed }}
+
+
+
+
+
-{% if data.show_edit_form %} - - -{% else %} - -{% endif %} +
+
- - +
-

home

- + + + + + + + + + + {% if data.show_edit_form %} + + + + + {% else %} + + + + + {% endif %} + + + + + + + + + + + + + + + + + + + + + + + + + + +
ItemData
Label
Label{{ data.label }}
Successful Sent Bids{{ data.num_sent_bids_successful }}
Successful Received Bids{{ data.num_recv_bids_successful }}
Rejected Sent Bids{{ data.num_sent_bids_rejected }}
Rejected Received Bids{{ data.num_recv_bids_rejected }}
Failed Sent Bids{{ data.num_sent_bids_failed }}
Failed Received Bids{{ data.num_recv_bids_failed }}
+
+
+ +
+
+
+ + {% if data.show_edit_form %} + +
+ +
+ +
+ +
+ + {% else %} +
+ +
+ + {% endif %} + +
+
+
+ + + + + +
+
+
+
+ +
+ + +
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/index.html b/basicswap/templates/index.html index 1841b9a..114a8f3 100644 --- a/basicswap/templates/index.html +++ b/basicswap/templates/index.html @@ -1,32 +1,40 @@ {% include 'header.html' %} - -

-{% if refresh %} -Page Refresh: {{ refresh }} seconds
-{% endif %} -Version: {{ version }} -

-

-View Wallets
-Settings
-RPC Console
-Explorers
-SMSG Addresses
-
-Swaps in Progress: {{ summary.num_swapping }}
-Network Offers: {{ summary.num_network_offers }}
-Sent Offers: {{ summary.num_sent_offers }}
-Available Bids: {{ summary.num_available_bids }}
-Received Bids: {{ summary.num_recv_bids }}
-Sent Bids: {{ summary.num_sent_bids }}
-Watched Outputs: {{ summary.num_watched_outputs }}
-Automation Strategies
-{% if use_tor_proxy %} TOR Information
{% endif %} -

- -

New Offer

- -

Shutdown

- +
+
+
+
+ +

Welcome to BasicSwap DEX

+
+ + + + +
+

Swap cryptocurrencies in a distributed trading environment with no restrictions and no fees.

+
+
+
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+{% include 'footer.html' %} diff --git a/basicswap/templates/info.html b/basicswap/templates/info.html index 33cd387..3760de7 100644 --- a/basicswap/templates/info.html +++ b/basicswap/templates/info.html @@ -1,6 +1,5 @@ - {{ title }} diff --git a/basicswap/templates/offer.html b/basicswap/templates/offer.html index e47e6c7..c53ea87 100644 --- a/basicswap/templates/offer.html +++ b/basicswap/templates/offer.html @@ -1,49 +1,171 @@ {% include 'header.html' %} -

Offer {{ offer_id }}

-{% if refresh %} -

Page Refresh: {{ refresh }} second

-{% else %} -

refresh

-{% endif %} +
+
+
+
+ +
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Offer (normal)

+

Offer ID: {{ offer_id }}

+
+
+ {% if refresh %} + + {% else %} + + {% endif %} +
+
+
+
+
+ + {% for m in messages %} + +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
+ + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} {% if sent_bid_id %}

Sent Bid {{ sent_bid_id }}

{% endif %} - - - - - - - - - - - - - +
+
+
+
+
+ +
+
+ +
Offer State{{ data.state }}
Coin From{{ data.coin_from }}
Coin To{{ data.coin_to }}
Amount From{{ data.amt_from }} {{ data.tla_from }}
Amount To{{ data.amt_to }} {{ data.tla_to }}
Minimum Bid Amount{{ data.amt_bid_min }} {{ data.tla_from }}
Rate{{ data.rate }}
Amount Swapped{{ data.amt_swapped }} {{ data.tla_from }}
Amount Variable{{ data.amount_negotiable }}
Rate Variable{{ data.rate_negotiable }}
Script Lock Type{{ data.lock_type }}
Script Lock Value{{ data.lock_value }} {{ data.lock_value_hr }}
+ + + + + + + + + + + + + + + + + + + + + + {% if data.addr_to == "Public" %} - + {% else %} - + {% endif %} - - - - - + + + + + + + {% if data.sent == 'True' %} - - - + + {% endif %} + +
ItemData
Offer State{{ data.state }}
Coin From{{ data.coin_from }}
Coin To{{ data.coin_to }}
Amount From{{ data.amt_from }} {{ data.tla_from }}
Amount To{{ data.amt_to }} {{ data.tla_to }}
Minimum Bid Amount{{ data.amt_bid_min }} {{ data.tla_from }}
Rate{{ data.rate }}
Amount Swapped{{ data.amt_swapped }} {{ data.tla_from }}
Amount Variable{{ data.amount_negotiable }}
Rate Variable{{ data.rate_negotiable }}
Script Lock Type{{ data.lock_type }}
Script Lock Value{{ data.lock_value }} {{ data.lock_value_hr }}
Address To{{ data.addr_to }}
Address To{{ data.addr_to }}
Address To{{ data.addr_to }} {{ data.addr_to_label }}
Address To{{ data.addr_to }} {{ data.addr_to_label }}
Address From{{ data.addr_from }} {{ data.addr_from_label }}
Created At{{ data.created_at | formatts }}
Expired At{{ data.expired_at | formatts }}
Sent{{ data.sent }}
Revoked{{ data.was_revoked }}
Address From{{ data.addr_from }} {{ data.addr_from_label }}
Created At{{ data.created_at | formatts }}
Expired At{{ data.expired_at | formatts }}
Sent{{ data.sent }}
Revoked{{ data.was_revoked }}
Auto Accept Strategy +
Auto Accept Strategy {% if data.automation_strat_id == -1 %} None {% else %} @@ -53,61 +175,211 @@ None {% endif %} {% if data.xmr_type == true %} -
Chain A offer fee rate{{ data.a_fee_rate }}
Chain A local fee rate{{ data.a_fee_rate_verify }}, fee source: {{ data.a_fee_rate_verify_src }} {% if data.a_fee_warn == true %} WARNING {% endif %}
Chain A offer fee rate{{ data.a_fee_rate }}
Chain A local fee rate{{ data.a_fee_rate_verify }}, fee source: {{ data.a_fee_rate_verify_src }} {% if data.a_fee_warn == true %} WARNING {% endif %}
+
+ + +
+
+
+

Bids

+
+
+
+ +
+
+ + + + + + + + + + + + + + +{% for b in bids %} + + + + + + + +{% endfor %}
Bid IDBid AmountBid RateBid StatusIdentity From
{{ b[0] }}{{ b[1] }}{{ b[3] }}{{ b[2] }}{{ b[4] }}
-
-{% if data.show_bid_form %} -

New Bid

-

You will send {{ data.amt_to }} {{ data.tla_to }} and receive {{ data.amt_from }} {{ data.tla_from }} -{% if data.xmr_type == true %} - (excluding {{ data.amt_from_lock_spend_tx_fee }} {{ data.tla_from }} in tx fees). -{% else %} - (excluding a tx fee). -{% endif %} -

+
+
- -
Send From Address - + + + + + + + + + + + + + + + + + + + + + {% if data.amount_negotiable == true %} - -{% endif %} -{% if data.rate_negotiable == true %} - + + + + {% endif %} - +{% if data.rate_negotiable == true %} + + + + +{% endif %} + + + + + + {% if data.debug_ui == true %} - + + + + + {% endif %} - +
InputOutput
You will send {{ data.amt_to }} {{ data.tla_to }}And receive {{ data.amt_from }} {{ data.tla_from }} + {% if data.xmr_type == true %} + (excluding {{ data.amt_from_lock_spend_tx_fee }} {{ data.tla_from }} in tx fees). + {% else %} + (excluding a tx fee). + {% endif %}
Send From Address + + + -
Amount
Rate
Amount
Minutes valid
Rate
Minutes valid +
Debug Option
Debug Option: +
- - - -
+ + + + +
+
+
+ +
+ +
+ +
+ +
+ + + +
+
+
+ {% else %} - + +
+
+
+ +
+ +
+ {% if data.sent == 'True' and data.was_revoked != true %} - + +
+ +
+ {% endif %} - + + + +
+
+
+ {% endif %} + @@ -119,15 +391,12 @@ None

-

Bids

- - -{% for b in bids %} - -{% endfor %} -
Bid IDBid AmountBid RateBid StatusIdentity From
{{ b[0] }}{{ b[1] }}{{ b[3] }}{{ b[2] }}{{ b[4] }}
+ + + + -

home

+ - + + +{% include 'footer.html' %} + + diff --git a/basicswap/templates/offer_confirm.html b/basicswap/templates/offer_confirm.html index 0d82855..f5c5a21 100644 --- a/basicswap/templates/offer_confirm.html +++ b/basicswap/templates/offer_confirm.html @@ -1,106 +1,743 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

Confirm New Offer

-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} +
+
+
+
+
+

Place an new Offer (Confirm)

+

Place an order on the network order book.

+
+
+
+
+
+
+
+
+
- + {% for m in messages %} - - - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
- -{% if data.swap_style == 'xmr' %} - - - - -{% endif %} + {% endfor %} + {% for m in err_messages %} - -{% if data.swap_style == 'xmr' and coin_to != '6' %} - - - -{% endif %} - - - - +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
- -{% if data.debug_ui == true %} -{% if data.swap_style != 'xmr' %}{% endif %} -{% else %} -{% if data.swap_style != 'xmr' %}{% endif %} -{% endif %} - -
Send To
Send From Address
Coin From - -Amount FromThe amount you will send.
Fee Rate FromFee Rate Source{{ data.from_fee_src }}
Fee From Confirm Target
Fee From Increase By -
Lock Tx Spend Fee{{ data.amt_from_lock_spend_tx_fee }} {{ data.tla_from }}
Coin To - -Amount ToThe amount you will receive.
Fee Rate ToFee Rate Source{{ data.to_fee_src }}
Fee To Confirm Target
Fee To Increase By -
Minimum Bid Amount
Rate
Amount Variable
Rate Variable
Offer valid (hrs)
Contract locked (mins)Participate txn will be locked for half the time.
Contract locked (hrs)Participate txn will be locked for half the time.
Auto Accept Strategy - -
+ {% endfor %} - - - - - - - - - -{% if data.automation_strat_id != -1 %} - -{% endif %} -{% if data.amt_var==true %} - -{% endif %} -{% if data.rate_var==true %} - -{% endif %} - - +
+
+
+
+
+

Select network

+
+
+
+ + + +
+ + + + + + + + + +
+ +
+
+
+
+
- +
+
+
+
+

Select address

+
+
+
+ + + +
+ + contacts 2 + + + + + + + +
+ +
+
+
+
+
+ +
+
+
+
+

Coins from

+
+
+
+
+

Coin From

+
+ + + +
+ + + + + + + + + + + +
+ +
+
+
+

Amount From (The amount you will send)

+
+
+ + + + + + + + + +
+ +
+
+ + {% if data.swap_style == 'xmr' %} + +
+

Fee From Confirm Target

+
+
+ + + + + + + + + +
+ +
+
+ +
+

Fee Rate From

+
+
+ + + + + + + + + +
+ +
+ Fee Rate Source: {{ data.from_fee_src }} +
+ +
+

Fee From Increase By

+
+ + + +
+ + + + + + + + + +
+ +
+ Lock Tx Spend Fee: {{ data.amt_from_lock_spend_tx_fee }} {{ data.tla_from }} +
+ + {% endif %} + +
+
+
+
+
+ +
+
+
+
+

Coins to

+
+
+
+ +
+

Coin To

+
+ + + +
+ + + + + + + + + + + +
+ +
+
+
+

Amount to (The amount you will receive)

+
+
+ + + + + + + + + +
+ +
+
+ + {% if data.swap_style == 'xmr' %} + +
+

Fee To Confirm Target

+
+
+ + + + + + + + + +
+ +
+
+ +
+

Fee Rate To

+
+
+ + + + + + + + + +
+ +
+ Fee Rate Source: {{ data.to_fee_src }} +
+ +
+

Fee To Increase By

+
+ + + +
+ + + + + + + + + +
+ +
+
+ + {% endif %} + + {% if data.swap_style == 'xmr' and coin_to != '6' %} + +
+

Fee To Confirm Target

+
+
+ + + + + + + + + +
+ +
+
+ +
+

Fee To Increase By

+
+ + + +
+ + + + + + + + + +
+ +
+
+ {% endif %} + +
+
+
+
+
+ +
+
+
+
+

Bid amount

+
+
+
+ +
+

Minimum Bid Amount

+
+
+ + + + + + + + + + +
+ +
+
+
+

Rate

+
+
+ + + + + + + + +
+ +
+
+
+
+
+
+
+ +
+
+
+
+

Time

+
+
+
+ +
+

Offer valid (hrs)

+
+
+ + + + + + + + + +
+ +
+
+ + {% if data.debug_ui == true %} + +
+

Contract Locked (Mins)

+
+
+ + + + + + + + + +
+ +
+ {% if data.swap_style != 'xmr' %} +
(Participate txn will be locked for half the time.)
+ {% endif %} +
+ + {% else %} + +
+

Contract locked (Hours)

+
+
+ + + + + + + + + +
+ + + +
+ {% if data.swap_style != 'xmr' %} +
(Participate txn will be locked for half the time.)
+ {% endif %} +
+ + {% endif %} + +
+
+
+
+
+ +
+
+
+
+

Strategy (BETA)

+
+
+
+ +
+

Auto Accept Strategy

+
+ + + +
+ + + + + + + + + + + +
+ +
+
+ +
+
+
+
+
+ +
+
+
+
+

Options

+
+
+
+ + +
+
+ + +
+
+
+
+
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ + + + + + + + + {% if data.automation_strat_id != -1 %} + + {% endif %} + {% if data.amt_var==true %} + + {% endif %} + {% if data.rate_var==true %} + + {% endif %} +
+ + +
+
+
+
+
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/offer_new_1.html b/basicswap/templates/offer_new_1.html index 906f15d..a2b7856 100644 --- a/basicswap/templates/offer_new_1.html +++ b/basicswap/templates/offer_new_1.html @@ -1,194 +1,584 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

New Offer

-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Place an new Offer (Step 1)

+

Place an order on the network order book.

+
+
+
+
+
-
+
+
+
+
+
- - - + {% for m in messages %} - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
- - - + {% endfor %} - - -
Send To
Send From Address
Coin From - -Amount FromThe amount you will send.
Coin To - -Amount ToThe amount you will receive.
Minimum Bid Amount
RateLock Rate:
Amount Variable
Rate Variable
+ {% for m in err_messages %} - - - - - - +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
-

+ {% endfor %} -

home

- - - + function lookup_rates_table() { + const coin_from = document.getElementById('coin_from').value; + const coin_to = document.getElementById('coin_to').value; + + if (coin_from == '-1' || coin_to == '-1') { + alert('Coins from and to must be set first.'); + return; + } + + inner_html = 'Updating...

'; + document.getElementById('rates_display').innerHTML = inner_html; + + xhr_rates_table.open('GET', '/json/rateslist?from='+coin_from+'&to='+coin_to); + xhr_rates_table.send(); + } + + function set_rate(value_changed) { + const coin_from = document.getElementById('coin_from').value; + const coin_to = document.getElementById('coin_to').value; + const amt_from = document.getElementById('amt_from').value; + const amt_to = document.getElementById('amt_to').value; + const rate = document.getElementById('rate').value; + const lock_rate = rate == '' ? false : document.getElementById('rate_lock').checked; + + if (coin_from == '-1' || coin_to == '-1') { + return; + } + + params = 'coin_from='+coin_from+'&coin_to='+coin_to; + if (value_changed == 'rate' || (lock_rate && value_changed == 'amt_from') || (amt_to == '' && value_changed == 'amt_from')) { + if (amt_from == '' || rate == '') { + return; + } + params += '&rate='+rate+'&amt_from='+amt_from; + } else + if (lock_rate && value_changed == 'amt_to') { + if (amt_to == '' || rate == '') { + return; + } + params += '&amt_to='+amt_to+'&rate='+rate; + } else { + if (amt_from == '' || amt_to == '') { + return; + } + params += '&amt_from='+amt_from+'&amt_to='+amt_to; + } + + xhr_rate.open('POST', '/json/rate'); + xhr_rate.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); + xhr_rate.send(params); + } + + +
+ {% include 'footer.html' %} +
+ + + diff --git a/basicswap/templates/offer_new_2.html b/basicswap/templates/offer_new_2.html index b2782d5..616abef 100644 --- a/basicswap/templates/offer_new_2.html +++ b/basicswap/templates/offer_new_2.html @@ -1,100 +1,648 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

New Offer

-{% for m in messages %} -

{{ m }}

-{% endfor %} -{% for m in err_messages %} -

Error: {{ m }}

-{% endfor %} +
+
+
+
+
+

Place an new Offer (Step 2)

+

Place an order on the network order book.

+
+
+
+
+
+
+
+
+
-
+ {% for m in messages %} - - - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
- -{% if data.swap_style == 'xmr' %} - - -{% endif %} + {% endfor %} - -{% if data.swap_style == 'xmr' and coin_to != '6' %} - - -{% endif %} - - - - + {% for m in err_messages %} +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
- -{% if data.debug_ui == true %} -{% if data.swap_style != 'xmr' %}{% endif %} -{% else %} -{% if data.swap_style != 'xmr' %}{% endif %} -{% endif %} - + {% endfor %} -
Send To
Send From Address
Coin From - -Amount FromThe amount you will send.
Fee From Confirm Target
Fee From Increase By -
Coin To - -Amount ToThe amount you will receive.
Fee To Confirm Target
Fee To Increase By -
Minimum Bid Amount
Rate
Amount Variable
Rate Variable
Offer valid (hrs)
Contract locked (mins)Participate txn will be locked for half the time.
Contract locked (hrs)Participate txn will be locked for half the time.
Auto Accept Strategy - -
+ +
+
+
+
+

Select network

+
+
+
+ + + +
+ + + + + + + + + +
+ +
+
+
+
+
- - - - - - - -{% if data.amt_var==true %} - -{% endif %} -{% if data.rate_var==true %} - -{% endif %} -
+
+
+
+
+

Select address

+
+
+
+ + + +
+ + contacts 2 + + + + + + + +
+ +
+
+
+
+
- - +
+
+
+
+

Coins from

+
+
+
+
+

Coin From

+
+ + + +
+ + + + + + + + + + + +
+ +
+
+
+

Amount From (The amount you will send)

+
+
+ + + + + + + + + +
+ +
+
+ + {% if data.swap_style == 'xmr' %} + +
+

Fee From Confirm Target

+
+
+ + + + + + + + + +
+ +
+
+ +
+

Fee From Increase By

+
+ + + +
+ + + + + + + + + +
+ +
+
+ + {% endif %} + +
+
+
+
+
+ +
+
+
+
+

Coins to

+
+
+
+ +
+

Coin To

+
+ + + +
+ + + + + + + + + + + +
+ +
+
+
+

Amount to (The amount you will receive)

+
+
+ + + + + + + + + +
+ +
+
+ + {% if data.swap_style == 'xmr' and coin_to != '6' %} + +
+

Fee From Confirm Target

+
+
+ + + + + + + + + +
+ +
+
+ +
+

Fee From Increase By

+
+ + + +
+ + + + + + + + + +
+ +
+
+ + {% endif %} + +
+
+
+
+
+ +
+
+
+
+

Bid amount

+
+
+
+ +
+

Minimum Bid Amount

+
+
+ + + + + + + + + + +
+ +
+
+
+

Rate

+
+
+ + + + + + + + +
+ +
+
+
+
+
+
+
+ +
+
+
+
+

Time

+
+
+
+ +
+

Offer valid (hrs)

+
+
+ + + + + + + + + +
+ +
+
+ + {% if data.debug_ui == true %} + +
+

Contract Locked (Mins)

+
+
+ + + + + + + + + +
+ +
+ + {% if data.swap_style != 'xmr' %} +
(Participate txn will be locked for half the time.)
+ {% endif %} + +
+ + {% else %} +
+

Contract locked (Hours)

+
+
+ + + + + + + + + +
+ +
+ + {% if data.swap_style != 'xmr' %} +
(Participate txn will be locked for half the time.)
+ {% endif %} +
+ + {% endif %} + +
+
+
+
+
+ +
+
+
+
+

Strategy (BETA)

+
+
+
+ +
+

Auto Accept Strategy

+
+ + + +
+ + + + + + + + + + + +
+ +
+
+ +
+
+
+
+
+ +
+
+
+
+

Options

+
+
+
+ + +
+
+ + +
+
+
+
+
+ +
+
+
+
+ +
+ +
+ +
+
+
+
+ + + + + + + {% if data.amt_var==true %} + + {% endif %} + {% if data.rate_var==true %} + + {% endif %} + + + +
+
+
+
+
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/offers.html b/basicswap/templates/offers.html index a4fda31..d3f485a 100644 --- a/basicswap/templates/offers.html +++ b/basicswap/templates/offers.html @@ -1,61 +1,349 @@ {% include 'header.html' %} +
-

Network Offers

-{% if refresh %} -

Page Refresh: {{ refresh }} seconds

-{% endif %} -{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ +
+
+
-
- - - +
+
+
+ + + +
+
+

{{ page_type }}

+

{{ page_type_description }}

+
+
+
+
+
- - + {% for m in messages %} - - -
Coin From - -Coin To - -
Sort By - - -
Sent From Node - -
Page: {{ filters.page_no }}
- - -
+
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
+ + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + +
+
+
+
+
+ +
+ +
+
+
+
+ +
+
+ + + + +
+
+ +
+
+

+
+
+ +
+
+ + + + + +
+
+ +
+
+

Sort By:

+
+
+ +
+
+ + + + +
+
+ +
+
+ + + + +
+
+ +
+
+

Sent From Node:

+
+
+ +
+
+ + + + +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
- - -{% for o in offers %} - -{% endfor %} -
AtFromRecipientOffer IDCoin FromCoin ToAmount FromAmount ToRateAmount From Swapped
{{ o[0] }}{{ o[8]|truncate(12, True) }}{% if o[9]==true %} Sent{% endif %}{{ o[7] }}{{ o[1] }}{{ o[2] }}{{ o[3] }}{{ o[4] }}{{ o[5] }}{{ o[6] }}{{ o[10] }}
+
+
+ -

home

- + + + + + + + + + + + + + + + + + + + {% for o in offers %} + + + + + + + + + + + + + + + + + + + {% endfor %} +
TIME AT From Recipient BUYING SELLING Amount From Amount To Rate Trade
+ + + + + + +
+
{{ o[0] }}
+
+
{{ o[7] }} {{ o[8] }}{% if o[9]==true %} {% endif %} {{ o[3] }} {{ o[2] }}{{ o[4] }}{{ o[5] }}{{ o[6] }} {% if o[9]==true %}Edit {% else %} Trade {% endif %} +
+ + + + +
+
+ +
+
+
+ +
+ +
+ +
+
+

Page: {{ filters.page_no }}

+
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+
+ +
+ +
+{% include 'footer.html' %} + + diff --git a/basicswap/templates/rpc.html b/basicswap/templates/rpc.html index 24ea621..a157cc8 100644 --- a/basicswap/templates/rpc.html +++ b/basicswap/templates/rpc.html @@ -1,28 +1,199 @@ {% include 'header.html' %} +
-

RPC Console

-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ +
+
+
-
-

-
-
- - -

-
+
+
+
+ + + +
+
+

RPC Console

+

+
+
+
+
+
-{% if result %} - -{% endif %} + {% for m in messages %} -

home

- +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
+ + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + + +
+
+
+
+
+ +
+
+ +
+ + + + + + + + + + + + + +
CoinsInput
+ + +
+
+
+ +
+
+
+ +
+ +
+ +
+
+
+ + + + {% if result %} + +
+
+ + + + + + + + + + + +
RPC console output:
+ +
+
+
+ {% endif %} + + + +
+
+
+
+ +
+ +
+{% include 'footer.html' %} + + + diff --git a/basicswap/templates/settings.html b/basicswap/templates/settings.html index ecfe964..5d4bafb 100644 --- a/basicswap/templates/settings.html +++ b/basicswap/templates/settings.html @@ -1,86 +1,281 @@ {% include 'header.html' %} -

Settings

+
+
+
+
+ +
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Settings

+

Manage your Basicswap and Coins settings

+
+
+
+
+
-
+ {% for m in messages %} -{% for c in chains %} -

{{ c.name|capitalize }}

- -{% if c.connection_type %} - -{% endif %} -{% if c.manage_daemon is defined %} -{% if c.name == 'monero' %} - - - - - -{% else %} - -{% endif %} -{% endif %} -{% if c.manage_wallet_daemon is defined %} - -{% endif %} - -{% if c.name == 'monero' %} - -{% else %} - -{% endif %} -{% if c.name == 'particl' %} - -{% endif %} - -
Connection Type{{ c.connection_type }}
Manage Daemon -
Daemon RPC Host
Daemon RPC Port
Remote Daemon Urls
-List of public nodes to use if "Automatically Select Daemon" is true.
-Add one entry per line, eg:
-node.xmr.to:18081
- -
Automatically Select Daemon -
Manage Daemon{{ c.manage_daemon }}
Manage Wallet Daemon{{ c.manage_wallet_daemon }}
Chain Lookups -
Transaction Fee Priority -
Blocks Confirmed Target
Anon Tx Ring Size
-{% if c.can_disable == true %} - -{% endif %} -{% if c.can_reenable == true %} - -{% endif %} -
-{% endfor %} -
+
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
- - + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + + +
+ +
+
+
+
+
+ + {% for c in chains %} + +
+
+
+

{{ c.name|capitalize }}

+
+
+
+ +
+
+ + + + + + + + + + {% if c.connection_type %} + + + + + {% endif %} + {% if c.manage_daemon is defined %} + {% if c.name == 'monero' %} + + + + + + + + + + + + + + + + + + + + {% else %} + + + + + {% endif %} + {% endif %} + {% if c.manage_wallet_daemon is defined %} + + + + + {% endif %} + + + + + {% if c.name == 'monero' %} + + + + + {% else %} + + + + + {% endif %} + {% if c.name == 'particl' %} + + + + + {% endif %} +
NameSetting
Connection Type{{ c.connection_type }}
Manage Daemon + +
Daemon RPC Host
Daemon RPC Port
+
Automatically Select Daemon + +
Manage Daemon{{ c.manage_daemon }}
Manage Wallet Daemon{{ c.manage_wallet_daemon }}
Chain Lookups + +
Transaction Fee Priority + +
Blocks Confirmed Target
Anon Tx Ring Size
+
+
+ +
+
+
+ +
+ +
+ + {% if c.can_disable == true %} + +
+ +
+ + {% endif %} + {% if c.can_reenable == true %} + +
+ +
+ {% endif %} + +
+
+
+ {% endfor %} + + + +
+
+ +
+
+ + + +
-

home

- +{% include 'footer.html' %} + + diff --git a/basicswap/templates/smsgaddresses.html b/basicswap/templates/smsgaddresses.html index 90fe2c6..555635d 100644 --- a/basicswap/templates/smsgaddresses.html +++ b/basicswap/templates/smsgaddresses.html @@ -1,57 +1,381 @@ {% include 'header.html' %} -

Active SMSG Addresses

+
+
+
+
+ +
+
+
-{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+ + + +
+
+

Active SMSG Addresses

+

+
+
+
+
+
-
+ {% for m in messages %} -{% if data.edit_address %} - - +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-

Edit Address {{ data.addr_data.addr }}

- - - - + {% endfor %} - -
Pubkey{{ data.addr_data.pubkey }}
Active
Note
-{% elif data.new_address %} -

New Receiving Address

- - + {% for m in err_messages %} - -
Note
-{% elif data.new_send_address %} -

Add Sending Address

- - - +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
- -
Pubkey
Note
-{% else %} - - - -{% for sa in smsgaddresses %} - -{% endfor %} -
AddressTypeActiveCreated AtNoteAction
{{ network_addr }}Network Address
{{ sa.addr }}{{ sa.type }}{{ sa.active_ind }}{{ sa.created_at | formatts }}{{ sa.note }}
+ {% endfor %} - - -{% endif %} - -
+
+
+
+
+
-

home

- +
+ + {% if data.edit_address %} + + + + +
+
+
+

Edit Address: {{ data.addr_data.addr }}

+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
SETTINGVALUE
Pubkey{{ data.addr_data.pubkey }}
Active + +
Note + +
+
+
+ +
+
+
+ +
+ +
+ +
+ +
+ +
+
+
+ + {% elif data.new_address %} + +
+
+
+

New Receiving Address

+
+
+
+ +
+
+ + + + + + + + + + + + + + +
SETTINGVALUE
Note
+ + +
+
+ +
+
+
+ +
+ +
+ +
+ +
+ +
+
+
+ + {% elif data.new_send_address %} + +
+
+
+

Add Sending Address

+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
SETTINGVALUE
Pubkey
Note
+
+
+ +
+
+
+ +
+ +
+ +
+ +
+ +
+
+
+ + {% else %} + +
+
+ + + + + + + + + + + + + + + + + + + + {% for sa in smsgaddresses %} + + + + + + + + + {% endfor %} + +
AddressTypeActiveCreated AtNoteAction
{{ network_addr }}Network Address + + + + + +
{{ sa.addr }}{{ sa.type }}{{ sa.active_ind }}{{ sa.created_at | formatts }}{{ sa.note }}
+
+
+ + +
+
+
+ + +
+ +
+ +
+ +
+ +
+
+
+ + {% endif %} + +
+ +
+
+
+
+ +
+
+ {% include 'footer.html' %} + + + + diff --git a/basicswap/templates/tor.html b/basicswap/templates/tor.html index e83e945..a4e5e7d 100644 --- a/basicswap/templates/tor.html +++ b/basicswap/templates/tor.html @@ -1,15 +1,162 @@ {% include 'header.html' %} +
-

TOR Information

-{% if refresh %} -

Page Refresh: {{ refresh }} seconds

-{% endif %} +
+
+
+ +
+
+
- - - - -
Circuit Established{{ data.circuit_established }}
Bytes Written{{ data.bytes_written }}
Bytes Read{{ data.bytes_read }}
+
+
+
+ + + +
+
+

TOR

+

TOR connection information

+
+
+ +
+
+
+
+
-

home

- + {% for m in messages %} + +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
+ + {% endfor %} + + {% for m in err_messages %} + +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
+ + {% endfor %} + +
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Name:Output:
TOR Mode{% if use_tor_proxy == true %} Active {% if tor_established == true %} & Connected{% endif %} {% endif %}
Circuit Established{{ data.circuit_established }}
Bytes Written{{ data.bytes_written }}
Bytes Read{{ data.bytes_read }}
+
+
+
+
+
+ +
+ +
+{% include 'footer.html' %} + + + + diff --git a/basicswap/templates/wallet.html b/basicswap/templates/wallet.html index 5612695..29ca334 100644 --- a/basicswap/templates/wallet.html +++ b/basicswap/templates/wallet.html @@ -1,104 +1,351 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

refresh

-

back

+
+
+
+ + + +
+
+

+ + {{ w.name }} Wallet +

+

Manage your {{ w.ticker }} wallet. {% if refresh %} (Page Refresh: {{ refresh }} seconds) {% endif %}

+
+ +
+
+
+
-

{{ w.name }} Wallet

-{% if refresh %} -

Page Refresh: {{ refresh }} seconds

-{% endif %} + {% for m in messages %} -{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-
+ {% endfor %} -{% if w.updating %} -
Updating
-{% endif %} -{% if w.havedata %} -{% if w.error %} -

Error: {{ w.error }}

-{% else %} - + {% for m in err_messages %} - - -{% if w.unconfirmed %}{% endif %} +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
-{% if w.cid == '1' %} -{% if w.blind_unconfirmed %}{% endif %} -{% if w.anon_pending %}{% endif %} -{% endif %} + {% endfor %} - - -{% if w.bootstrapping %} - -{% endif %} -{% if w.expected_seed != true %}{% endif %} -{% if w.cid == '1' %} - -{% endif %} -{% if w.cid == '6' %} - - -{% else %} - -{% endif %} - -{% if w.cid == '1' %} - -{% endif %} - -{% if w.cid != '6' %} -{% if w.show_utxo_groups %} - - - -{% else %} - -{% endif %} -
Last updated:{{ w.lastupdated }}
Version:{{ w.version }}
Balance:{{ w.balance }}Unconfirmed:{{ w.unconfirmed }}
Blind Balance:{{ w.blind_balance }}Blind Unconfirmed:{{ w.blind_unconfirmed }}
Anon Balance:{{ w.anon_balance }}Anon Pending:{{ w.anon_pending }}
Blocks:{{ w.blocks }} {% if w.known_block_count %} / {{ w.known_block_count }} {% endif %}
Synced:{{ w.synced }}
Bootstrapping:{{ w.bootstrapping }}
Expected Seed:{{ w.expected_seed }}
Stealth Address{{ w.stealth_address }}
Main Address{{ w.main_address }}
{{ w.deposit_address }}
{{ w.deposit_address }}
Amount: Address: Subtract fee:
Type From, To - -
Fee Rate:{{ w.fee_rate }}Est Fee:{{ w.est_fee }}
- -
Amount:
- -
- -
-{% endif %} -{% endif %} -{% endif %} + {% if w.updating %} +
Updating
{% endif %} {% if w.havedata %} {% if w.error %}

Error: {{ w.error }}

{% else %} +
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + {% if w.unconfirmed %} + + {% endif %} + {% if w.cid == '1' %} + + + {% if w.blind_unconfirmed %} + + {% endif %} + + + + {% if w.anon_pending %} + + {% endif %} + {% endif %} + + + + + + + + {% if w.bootstrapping %} + + + + {% endif %} + + + {% if w.expected_seed != true %} + {% endif %} + {% if w.cid == '1' %} + + + + {% endif %} {% if w.cid == '6' %} + + + + + + + + {% else %} + + + + {% endif %} +
NameSetting
Last updated:{{ w.lastupdated }}
Version:{{ w.version }}
Balance:{{ w.balance }}Unconfirmed:{{ w.unconfirmed }}
Blind Balance:{{ w.blind_balance }}Blind Unconfirmed:{{ w.blind_unconfirmed }}
Anon Balance:{{ w.anon_balance }}Anon Pending:{{ w.anon_pending }}
Blocks:{{ w.blocks }} {% if w.known_block_count %} / {{ w.known_block_count }} {% endif %}
Synced:{{ w.synced }}
Bootstrapping:{{ w.bootstrapping }}
Expected Seed:{{ w.expected_seed }} + +
Stealth Address{{ w.stealth_address }}
Main Address{{ w.main_address }}
+ + {{ w.deposit_address }}
+ + {{ w.deposit_address }}
+
+
+
+
+
+

Withdraw

+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + {% if w.cid == '1' %} + + + + + + {% endif %} + + + + + + +
NAMEINPUT
+ + + + + +
Subtract Fee: + +
Type From -> To + + + +
Fee Rate:{{ w.fee_rate }}Est Fee: {{ w.est_fee }}
+
+
{% if w.cid != '6' %} {% if w.show_utxo_groups %} +
+
+
+

UTXO Groups

+
+
+
+
+
+ + + + + + + + + + + + + + + +
NameData
Groups + +
+ + + +
+
+
+
+
+
+
+ +
+
+
+
{% else %} +
+
+
+
+ +
+
+
+
{% endif %} {% endif %} {% endif %} {% endif %} + + + +
- - - -

home

- + +
+
+
+
+{% include 'footer.html' %} + + + diff --git a/basicswap/templates/wallets.html b/basicswap/templates/wallets.html index 63a14a1..8dbc5ca 100644 --- a/basicswap/templates/wallets.html +++ b/basicswap/templates/wallets.html @@ -1,61 +1,183 @@ {% include 'header.html' %} +
+
+
+
+ +
+
+
-

refresh

+
+
+
+ + + +
+
+

Wallets

+

Check your coin balances and manage your wallets. {% if refresh %} (Page Refresh: {{ refresh }} seconds) {% endif %}

+
+ +
+
+
+
-

Wallets

-{% if refresh %} -

Page Refresh: {{ refresh }} seconds

-{% endif %} + {% for m in messages %} -{% for m in messages %} -

{{ m }}

-{% endfor %} +
+
+
+
+
+
+
+ + + +
+
+

{{ m }}

+
+
+
+ +
+
+
+
-
+ {% endfor %} -{% for w in wallets %} -

{{ w.name }} {{ w.version }}

-{% if w.updating %} -
Updating
-{% endif %} -{% if w.havedata %} -{% if w.error %} -

Error: {{ w.error }}

-{% else %} - - -{% if w.unconfirmed %}{% endif %} + {% for m in err_messages %} +
+
+
+
+
+
+
+ + + +
+
+

+

Error: {{ m }}

+

+
+
+
+ +
+
+
+
-{% if w.cid == '1' %} -{% if w.blind_unconfirmed %}{% endif %} -{% if w.anon_pending %}{% endif %} -{% endif %} + {% endfor %} +
+
+
{% for w in wallets %} {% if w.havedata %} {% if w.error %} +

Error: {{ w.error }}

{% else %} +
+
+
+ Manage
+
+

{{ w.name }} ({{ w.ticker }})

+

Version: {{ w.version }} {% if w.updating %} Updating

{% endif %} +
+
+
+

Balance:

{{ w.balance }} +
{% if w.unconfirmed %} +
+

Unconfirmed:

{{ w.unconfirmed }} +
{% endif %} {% if w.cid == '1' %} +
+

Blind Balance:

{{ w.blind_balance }} +
{% if w.blind_unconfirmed %} +
+

Blind Unconfirmed:

{{ w.blind_unconfirmed }} +
{% endif %} +
+

Anon Balance:

{{ w.anon_balance }} +
{% if w.anon_pending %} +
+

Anon Pending:

{{ w.anon_pending }} +
{% endif %} {% endif %} +
+

Blocks:

{{ w.blocks }} {% if w.known_block_count %} / {{ w.known_block_count }} {% endif %} +
+
+

Last Updated:

{{ w.lastupdated }} +
{% if w.bootstrapping %} +
+

Bootstrapping:

{{ w.bootstrapping }} +
{% endif %} +
+

Expected Seed:

{{ w.expected_seed }} +
+
Blockchain {{ w.synced }}%
+
+
+
+
+
{% endif %} {% endif %} + +
{% endfor %} + +
+
+ +{% include 'footer.html' %} + - - - -

home

- - - + diff --git a/basicswap/templates/watched.html b/basicswap/templates/watched.html index cbead84..c96d31b 100644 --- a/basicswap/templates/watched.html +++ b/basicswap/templates/watched.html @@ -1,25 +1,119 @@ {% include 'header.html' %} +
+
+
+
+
    +
  • + +

    Home

    +
    +
  • +
  • + + + +
  • +
  • Watched Outputs
  • +
  • + + + +
  • -

    Watched Outputs

    -{% if refresh %} -

    Page Refresh: {{ refresh }} seconds

    -{% endif %} +
+
+
+
-

Last Scanned

-
Last updated:{{ w.lastupdated }}
Balance:{{ w.balance }}Unconfirmed:{{ w.unconfirmed }}
Blind Balance:{{ w.blind_balance }}Blind Unconfirmed:{{ w.blind_unconfirmed }}
Anon Balance:{{ w.anon_balance }}Anon Pending:{{ w.anon_pending }}
- -{% for ls in last_scanned %} - -{% endfor %} -
Coinheight
{{ ls[0] }}{{ ls[1] }}
-
+
+
+
+ + + +
+
+

Watched Outputs

+

{% if refresh %} Page Refresh: {{ refresh }} seconds {% endif %}

+
+
+
+
+
- - -{% for wo in watched_outputs %} - -{% endfor %} -
Bid IDChainTxidIndexType
{{ wo[0] }}{{ wo[1] }}{{ wo[2] }}{{ wo[3] }}{{ wo[4] }}
+
+
+
+
+
-

home

- +
+
+
+

Last Scanned

+

+
+
+ +
+
+ + + + + + + + + + + {% for ls in last_scanned %} + + + + + {% endfor %} +
CoinHeight
{{ ls[0] }}{{ ls[1] }}
+
+
+ +
+
+ + + + + + + + + + + + + {% for wo in watched_outputs %} + + + + + + + + {% endfor %} +
Bid IDChainTxidIndexType
{{ wo[0] }}{{ wo[1] }}{{ wo[2] }}{{ wo[3] }}{{ wo[4] }}
+
+
+ +
+
+
+
+ +
+
+ {% include 'footer.html' %} + + + + diff --git a/basicswap/ui/page_automation.py b/basicswap/ui/page_automation.py index 701e889..0a40366 100644 --- a/basicswap/ui/page_automation.py +++ b/basicswap/ui/page_automation.py @@ -17,10 +17,10 @@ from basicswap.db import ( strConcepts, ) - def page_automation_strategies(self, url_split, post_string): server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() filters = { 'page_no': 1, @@ -53,12 +53,14 @@ def page_automation_strategies(self, url_split, post_string): 'messages': messages, 'filters': filters, 'strategies': formatted_strategies, + 'summary': summary, }) def page_automation_strategy_new(self, url_split, post_string): server = self.server swap_client = self.server.swap_client + summary = swap_client.getSummary() messages = [] form_data = self.checkForm(post_string, 'automationstrategynew', messages) @@ -66,6 +68,7 @@ def page_automation_strategy_new(self, url_split, post_string): template = server.env.get_template('automation_strategy_new.html') return self.render_template(template, { 'messages': messages, + 'summary': summary, }) @@ -78,6 +81,7 @@ def page_automation_strategy(self, url_split, post_string): server = self.server swap_client = self.server.swap_client + summary = swap_client.getSummary() messages = [] @@ -96,4 +100,5 @@ def page_automation_strategy(self, url_split, post_string): return self.render_template(template, { 'messages': messages, 'strategy': formatted_strategy, + 'summary': summary, }) diff --git a/basicswap/ui/page_bids.py b/basicswap/ui/page_bids.py index 7b772a9..5f706f1 100644 --- a/basicswap/ui/page_bids.py +++ b/basicswap/ui/page_bids.py @@ -37,6 +37,7 @@ def page_bid(self, url_split, post_string): raise ValueError('Bad bid ID') server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() messages = [] err_messages = [] @@ -113,12 +114,14 @@ def page_bid(self, url_split, post_string): 'data': data, 'edit_bid': edit_bid, 'old_states': old_states, + 'summary': summary, }) -def page_bids(self, url_split, post_string, sent=False, available=False): +def page_bids(self, url_split, post_string, sent=False, available=False, received=False): server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() filters = { 'page_no': 1, @@ -165,10 +168,16 @@ def page_bids(self, url_split, post_string, sent=False, available=False): template = server.env.get_template('bids.html') return self.render_template(template, { - 'page_type': 'Sent' if sent else 'Received', + 'page_type_sent': 'Sent' if sent else '', + 'page_type_available': 'Available' if available else '', + 'page_type_received': 'Received' if received else '', + 'page_type_sent_description': 'Sent description' if sent else '', + 'page_type_available_description': 'Available description' if available else '', + 'page_type_received_description': 'Received description' if received else '', 'messages': messages, 'filters': filters, 'data': page_data, + 'summary': summary, 'bids': [(format_timestamp(b[0]), b[2].hex(), b[3].hex(), strBidState(b[5]), strTxState(b[7]), strTxState(b[8]), b[11]) for b in bids], }) diff --git a/basicswap/ui/page_offers.py b/basicswap/ui/page_offers.py index b05ddb9..7503ff3 100644 --- a/basicswap/ui/page_offers.py +++ b/basicswap/ui/page_offers.py @@ -267,6 +267,7 @@ def postNewOffer(swap_client, form_data): def page_newoffer(self, url_split, post_string): server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() messages = [] err_messages = [] @@ -330,6 +331,7 @@ def page_newoffer(self, url_split, post_string): 'addrs_to': swap_client.listSmsgAddresses('offer_send_to'), 'data': page_data, 'automation_strategies': automation_strategies, + 'summary': summary, }) @@ -342,6 +344,7 @@ def page_offer(self, url_split, post_string): raise ValueError('Bad offer ID') server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() offer, xmr_offer = swap_client.getXmrOffer(offer_id) ensure(offer, 'Unknown offer ID') @@ -488,12 +491,14 @@ def page_offer(self, url_split, post_string): 'data': data, 'bids': formatted_bids, 'addrs': None if show_bid_form is None else swap_client.listSmsgAddresses('bid'), + 'summary': summary, }) def page_offers(self, url_split, post_string, sent=False): server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() filters = { 'coin_from': -1, @@ -552,10 +557,13 @@ def page_offers(self, url_split, post_string, sent=False): template = server.env.get_template('offers.html') return self.render_template(template, { + 'page_type': 'Sent Offers' if sent else 'Network Offers', + 'page_type_description': 'Sent Offers description' if sent else 'Network Offers description', 'messages': messages, 'coins_from': coins_from, 'coins': coins_to, 'messages': messages, 'filters': filters, 'offers': formatted_offers, + 'summary': summary, }) diff --git a/basicswap/ui/page_tor.py b/basicswap/ui/page_tor.py index 271c3e0..0acb982 100644 --- a/basicswap/ui/page_tor.py +++ b/basicswap/ui/page_tor.py @@ -22,8 +22,8 @@ def get_tor_established_state(swap_client): def page_tor(self, url_split, post_string): - swap_client = self.server.swap_client + summary = swap_client.getSummary() page_data = {} @@ -50,4 +50,5 @@ def page_tor(self, url_split, post_string): return self.render_template(template, { 'messages': messages, 'data': page_data, + 'summary': summary, }) diff --git a/basicswap/ui/page_wallet.py b/basicswap/ui/page_wallet.py index 7d7890c..c2ea53e 100644 --- a/basicswap/ui/page_wallet.py +++ b/basicswap/ui/page_wallet.py @@ -61,6 +61,7 @@ def format_wallet_data(ci, w): def page_wallets(self, url_split, post_string): server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() page_data = {} messages = [] @@ -153,6 +154,7 @@ def page_wallets(self, url_split, post_string): return self.render_template(template, { 'messages': messages, 'wallets': wallets_formatted, + 'summary': summary, }) @@ -161,6 +163,7 @@ def page_wallet(self, url_split, post_string): wallet_ticker = url_split[2] server = self.server swap_client = server.swap_client + summary = swap_client.getSummary() coin_id = getCoinIdFromTicker(wallet_ticker) @@ -240,7 +243,6 @@ def page_wallet(self, url_split, post_string): swap_client.log.error(traceback.format_exc()) swap_client.updateWalletsInfo(only_coin=coin_id, wait_for_complete=True) - wallets = swap_client.getCachedWalletsInfo({'coin_id': coin_id}) for k in wallets.keys(): w = wallets[k] @@ -304,4 +306,5 @@ def page_wallet(self, url_split, post_string): return self.render_template(template, { 'messages': messages, 'w': wallet_data, + 'summary': summary, })